blob: a9dc4c23c3864e0829b558acc8ebb3d1e72085f9 [file] [log] [blame]
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();
}
}