IDEA-192382 Override unused imports when adding class with same name

This commit is contained in:
peter
2018-06-01 13:57:35 +02:00
parent 7f46a79dbd
commit b2d683fcd4
4 changed files with 38 additions and 0 deletions
@@ -0,0 +1,5 @@
import foo.List;
class Scratch {
Lis<caret>
}
@@ -0,0 +1,5 @@
import java.util.List;
class Scratch {
List<caret>
}