Implement post-refactoring optimization of unused imports

#KT-15822 Fixed
 #KT-13755 Fixed
This commit is contained in:
Alexey Sedunov
2017-03-05 03:37:40 +03:00
parent 7d185349c8
commit bab762b761
82 changed files with 199 additions and 191 deletions
@@ -1,8 +1,5 @@
package `in`.foo.`fun`
import `in`.foo.`fun`.Foo
import `in`.foo.`fun`.foo
fun test() {
Foo()
foo()
@@ -1,6 +1,3 @@
import Foo
import foo
fun test() {
Foo()
foo()
@@ -1,8 +1,5 @@
package target
import target.Foo
import target.foo
fun test() {
Foo()
foo()