Skip to main content
summaryrefslogtreecommitdiffstats
blob: 361a676a2e0937da8d88020e0b29c3f6847047da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
//change to j k i
package p;
class A{
	private void m(int i, int j, int k){
	}
	private void foo(){
		m(3+ 1, 
			2, 
				3);
	}
}

Back to the top