blob: bf9237fe6fb355787f7850e5c9aa905c08a5ad46 [file] [log] [blame]
import java.util.List;
class A<E> {
E e;
List<E> list = new List<E>();
}
class B<T> extends A<T> {}
class C extends B <S<caret>tring> {
void foo() {
if (e == null && list != null) {
for (String s : list) {
}
}
}
}