mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
push down: static import preserve (IDEADEV-33557)
This commit is contained in:
+2
-2
@@ -1,11 +1,11 @@
|
||||
class Test {
|
||||
public void contextChild() {
|
||||
Test.StInner inner1 = new Test.StInner();
|
||||
StInner inner1 = new StInner();
|
||||
Test.InstInner inner2 = this.new InstInner();
|
||||
}
|
||||
|
||||
void foo() {
|
||||
Test.StInner inner1 = new Test.StInner();
|
||||
StInner inner1 = new StInner();
|
||||
Test.InstInner inner2 = this.new InstInner();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user