blob: 07ee7a4e9351d7416a0719955c227ee8bf0f69b1 [file] [log] [blame]
import java.util.List;
class A<T> {
T t;
List<T> list = new List<T>();
}
class B extends A<Object> {
void foo() {
if (t == null) return;
if (list == null) return;
for (Object s : list) {
//do nothing
}
}
}