Skip to main content
summaryrefslogtreecommitdiffstats
blob: 562b8b249b0938ac98cf373527ee8ced2a2e6666 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
void foo() {
	{
		i= 4;
	}
	System.out.println();
	j= 5;
}
void foo2() {
	{
		i= 4;
	}
	System.out.println();
	j= 5;
}

Back to the top