mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
8 lines
173 B
Java
8 lines
173 B
Java
class X<T>{}
|
|
|
|
class A<T,S extends X<T>> {}
|
|
|
|
class C {
|
|
void foo(A<?, <error descr="Type parameter 'X' is not within its bound; should extend 'X<?>'">X</error>> a){ }
|
|
}
|