mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 09:50:57 +07:00
7 lines
172 B
Java
7 lines
172 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){ }
|
|
} |