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