testdata for IDEA-57346

This commit is contained in:
anna
2012-10-23 21:08:48 +02:00
parent 380479ae47
commit 6cee706093
2 changed files with 5 additions and 0 deletions
@@ -0,0 +1,4 @@
class D<T> {
void foo(D<D<?>> x){ this.bar(x); }
<T extends Throwable> void bar(D<? super D<T>> x){}