testdata for IDEA-57413

This commit is contained in:
anna
2013-05-02 16:19:01 +02:00
parent c4132f698d
commit 70f0719667
2 changed files with 8 additions and 0 deletions
@@ -0,0 +1,7 @@
class A<T> {
<T extends A<T>> void foo(T x){}
void bar(A<?> x){
<error descr="Inferred type 'A<capture<?>>' for type parameter 'T' is not within its bound; should extend 'A<A<capture<?>>>'">foo(x)</error>;
}
}