Skip to main content
summaryrefslogtreecommitdiffstats
blob: a190210af3007f8694d3c6f31b94a227cf28e794 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package nameconflict_in;

public class TestBlocks {
	public void main() {
		if (true) {
			/*]*/foo();/*[*/
		}
		if (true) {
			int x= 1;
		}
	}
	
	private void foo() {
		int x= 1;
	}
}

Back to the top