mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
enable add import for inner classes (IDEA-183488)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
|
||||
import foo.Foo;
|
||||
|
||||
class Test {
|
||||
void test() {
|
||||
Foo.B<caret>ar bar;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
import foo.Foo;
|
||||
import foo.Foo.Bar;
|
||||
|
||||
class Test {
|
||||
void test() {
|
||||
Bar bar;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user