mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 07:11:30 +07:00
#IDEA-373936 fixed closes https://github.com/JetBrains/intellij-community/pull/3075 (cherry picked from commit fe3b036de7f23154be56f1116c58a0eef408c4dd) IJ-MR-164968 GitOrigin-RevId: b1f78464d8129718f9d5a479a099c173a640d174
11 lines
206 B
Java
11 lines
206 B
Java
class Test<T> {
|
|
<U extends T, V extends Comparable<U>> void test() {
|
|
class <caret>Inner {
|
|
V foo() {
|
|
return null;
|
|
}
|
|
}
|
|
new Inner();
|
|
}
|
|
}
|