mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
testdata for IDEA-67578
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
class X<T> { }
|
||||
|
||||
class A<T, S extends X<T>> {}
|
||||
|
||||
class C {
|
||||
void foo(A<?, X<?>> a){ <error descr="Inferred type 'X<?>' for type parameter 'S' is not within its bound; should extend 'X<capture<?>>'">bar(a)</error>; }
|
||||
<T, S extends X<T>> void bar(A<T, S> a){ }
|
||||
}
|
||||
Reference in New Issue
Block a user