blob: 7cc300b9cfbceeeefdf3ae313ddd941a947d830a [file] [log] [blame]
interface Parent<T> {}
class P<T> {}
class Child extends P<<error descr="A super type may not specify a wildcard type">? extends String</error>> implements Parent<<error descr="A super type may not specify a wildcard type">? extends String</error>> {
}
print "foo"