Skip to main content
summaryrefslogtreecommitdiffstats
blob: 52ea327115f72764b98b5b1154fb9e19805f4db1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package argument_out;

public class TestParameterNameUsed3 {
	public void main() {
		int x1 = 10;
		x1= 20;
		bar(x1);
		{
			int x= 20;
		}
	}
	
	public void foo(int x) {
		x= 20;
		bar(x);
	}
	
	public void bar(int z) {
	}
}

Back to the top