testdata for IDEA-57502

This commit is contained in:
Anna Kozlova
2015-05-21 10:00:41 +02:00
parent c0258b3e2d
commit 4afc0327aa
2 changed files with 15 additions and 0 deletions
@@ -0,0 +1,11 @@
interface I<T> {}
abstract class X {
abstract <T> T foo(T x, T y);
void bar(
I<I<? super I<? super I<Throwable>>>> x,
I<I<? super I<? super I<Exception>>>> y){
I<? extends I<? super I<? super I<?>>>> foo = foo(x, y);
}
}