mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
6 lines
161 B
Java
6 lines
161 B
Java
class A<T> {
|
|
class B<S> {
|
|
<error descr="Improperly formed type: 'B' needs type arguments because its qualifier has type arguments">A<T>.B</error> x;
|
|
}
|
|
}
|