Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8746d3638ccef5eee475c535dfcf490505608471 (plain) (blame)
1
2
3
4
5
6
7
8
9
public class XXX {
	public void foo() {
		int x = 0, y = 0;
		if (true)
			x = 1;//XXX
		else 
			y = 10;//YYY
	}
}

Back to the top