Skip to main content
summaryrefslogtreecommitdiffstats
blob: 530e6b9a196278f6de8cc54a0243e53b1ee8bde7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
//7, 17 -> 7, 18
package p;

class A {
	private void foo() {
		int s= 0;
		int temp= s;
		int z= +temp;
	}
}

Back to the top