mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
inline superclass: correct super references in extends/implements lists without pushdown (IDEA-86639)
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
interface Int<T> {
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
interface Test<T> extends Int<T> {
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
interface Super<T> extends Int<T> {
|
||||
}
|
||||
interface Int<T> {
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
interface Test<T> extends Super<T>{
|
||||
}
|
||||
Reference in New Issue
Block a user