blob: f26c784ba40f2b35f48f9cbbc2097e0077c272ee [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();
}
}