Move: Optimize imports after applying "Move declaration to separate file" intention
#KT-10174 Fixed
This commit is contained in:
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
package baz
|
||||
|
||||
class Baz {
|
||||
}
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
package foo.bar
|
||||
|
||||
import baz.Baz
|
||||
|
||||
class <caret>Foo {
|
||||
val b = Baz()
|
||||
}
|
||||
|
||||
class Bar
|
||||
Reference in New Issue
Block a user