Import: IDE should import class from root package

#KT-21422 Fixed
This commit is contained in:
Dmitry Gridin
2019-06-28 18:13:34 +07:00
parent 148eed2a12
commit 074829bcea
9 changed files with 51 additions and 6 deletions
+1
View File
@@ -0,0 +1 @@
class RootClass
+6
View File
@@ -0,0 +1,6 @@
// IMPORT: class: RootClass
package non.root.name
fun test() {
RootClass()
}
+8
View File
@@ -0,0 +1,8 @@
// IMPORT: class: RootClass
package non.root.name
import RootClass
fun test() {
RootClass()
}