//change to j k i
package p;
class A{
	private void m(int j, int k, int i){
	}
	private void foo(){
		m(2, 
			3, 
				3+ 1);
	}
}