blob: 25b6c9c3c2792a716fee8f27e49b0dc8e5fc6038 [file] [log] [blame]
abstract class A<S> {
abstract <T> T foo(T x, T y);
{
A<? extends A<? extends Throwable>> a = null;
A<? extends A<?>> b = null;
foo(a, b);
}
}