testdata for IDEA-57284

This commit is contained in:
anna
2012-10-23 21:08:51 +02:00
parent 2242a0f8d3
commit 32ba5ea18d
2 changed files with 7 additions and 0 deletions
@@ -0,0 +1,6 @@
abstract class A<S> {
abstract <T extends S> void foo();
void bar(A<? super Exception> x){
x.<<error descr="Type parameter 'String[]' is not within its bound; should extend 'capture<? super java.lang.Exception>'">String[]</error>>foo();
}
}