blob: 737870579aaaf0a3d4c237438306d0a954a0e586 [file] [log] [blame]
class A<T> {
<S extends A<? extends T>> void foo(){}
void bar(A<?> a){
a.<<error descr="Type parameter 'A' is not within its bound; should extend 'A<capture<?>>'">A<?></error>>foo();
}
}