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