Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 470a793132b37393c8f393d63c9448dc8d3b3213 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package test.test1.test2;
import java.io.*;
import java.util.Vector;
public class Test {
	public int i;
	public void foo(int k) {
		if (k > 0) {
			i = 3;;;
		} else if (k == 0) {
			i = 2;
		}
		if (i == 2) return;
		if (k > 0) i = 3;
	}
	public void bar() {
	}
	public long l; // long field
	public String s = null;
}

Back to the top