IDEA-121400

This commit is contained in:
Anna Kozlova
2014-03-27 20:54:28 +01:00
parent b55c83742b
commit 84451e644a
5 changed files with 26 additions and 8 deletions
@@ -4,7 +4,7 @@ class A<T> {
}
void bar(A<?> x){
baz<error descr="'baz(A<A<? extends S>>)' in 'A' cannot be applied to '(A<A<capture<?>>>)'">(x.foo())</error>;
baz<error descr="'baz(A<A<?>>)' in 'A' cannot be applied to '(A<A<capture<?>>>)'">(x.foo())</error>;
}
<S> void baz(A<A<? extends S>> x){}