blob: 51c30174be2637f32c0da283f343cb489aadf059 [file] [log] [blame]
package p;
class Test {
public int[] foo() {
return null;
}
public void bar(Test test) {
int[] temp= test.foo();
int[] i = temp; // refactor this
}
}