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