mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 08:45:34 +07:00
testdata for IDEA-57271
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user