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