blob: d94b0c8f4f87046a9a0b61454c864f42d08a2c4f [file] [log] [blame]
import java.util.ArrayList;
class B {
I getA() { return new A(); };
void test(I a) {
}
int method(ArrayList list) {
I a = getA();
test(a);
}
}