blob: e4bfd479d32cdb8299762575bbed74c78356b1f6 [file] [log] [blame]
class D<T> {
void foo(D<D<?>> x){ this.bar(x); }
<T extends Throwable> void bar(D<? super D<T>> x){}
}