Skip to main content
summaryrefslogblamecommitdiffstats
blob: eb396861ae002cbe2472cac0ce22fe4ca52b53f5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                     
package argument_out;

public class TestParameterNameUsed2 {
	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