Import: IDE should import class from root package
#KT-21422 Fixed
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// "Import" "true"
|
||||
// ERROR: Unresolved reference: RootClass
|
||||
package non.root.name
|
||||
|
||||
import RootClass
|
||||
|
||||
fun test() {
|
||||
RootClass()
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
class RootClass
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Import" "true"
|
||||
// ERROR: Unresolved reference: RootClass
|
||||
package non.root.name
|
||||
|
||||
fun test() {
|
||||
RootClass<caret>()
|
||||
}
|
||||
Reference in New Issue
Block a user