fix testdata

This commit is contained in:
Anna Kozlova
2015-11-25 12:25:02 +01:00
parent 169b42916e
commit f07899641d
@@ -2,6 +2,6 @@
abstract class A<<warning descr="Type parameter 'S' is never used">S</warning>> {
abstract <T> void foo(A<? extends A<T>> x);
void bar(A<? extends A> x){
foo<error descr="'foo(A<? extends A<java.lang.Object>>)' in 'A' cannot be applied to '(A<capture<? extends A>>)'">(x)</error>;
foo<error descr="'foo(A<? extends A<T>>)' in 'A' cannot be applied to '(A<capture<? extends A>>)'">(x)</error>;
}
}