blob: 2eb6d429915ea9c475d7f77e4ff41406152c5116 [file] [log] [blame]
public class Test extends B<S<caret>tring>{
String foo() {
return null;
}
void bar() {
if (foo() == null) {}
}
}
abstract class A<T> {
abstract T foo();
}
abstract class B<E extends Object> extends A<E> {
}