mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 20:52:37 +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
12 lines
232 B
Java
12 lines
232 B
Java
class Test<T> {
|
|
<U extends T, V extends Comparable<U>> void test() {
|
|
new Inner<U, V>();
|
|
}
|
|
|
|
private class Inner<U extends T, V extends Comparable<U>> {
|
|
V foo() {
|
|
return null;
|
|
}
|
|
}
|
|
}
|