blob: 699a60db6d0167a0a189585bad6c35ff45950d4d [file] [log] [blame]
class A<T> {
<T extends A<T>> void foo(T x){}
void bar(A<?> x){
foo<error descr="'foo(T)' in 'A' cannot be applied to '(A<capture<?>>)'">(x)</error>;
}
}