enable add import for inner classes (IDEA-183488)

This commit is contained in:
Anna.Kozlova
2017-12-14 11:29:34 +01:00
parent 0bc1e140a3
commit 571b62d662
4 changed files with 33 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
import foo.Foo;
class Test {
void test() {
Foo.B<caret>ar bar;
}
}

View File

@@ -0,0 +1,9 @@
import foo.Foo;
import foo.Foo.Bar;
class Test {
void test() {
Bar bar;
}
}