Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1080.fir.kt
T
Kirill Rakhman 7dde3603b5 [FIR] Report missing UNRESOLVED_IMPORT
#KT-54781 Fixed
2023-03-31 12:54:29 +00:00

20 lines
387 B
Kotlin
Vendored

//FILE:a.kt
//KT-1080 Don't use previously imported packages while resolving import references
package kt1080
import <!UNRESOLVED_IMPORT!>reflect<!>.Constructor
import b.*
import <!UNRESOLVED_IMPORT!>d<!>
import <!UNRESOLVED_IMPORT!>d<!>.Test
import b.<!PACKAGE_CANNOT_BE_IMPORTED!>d<!>
class Some: <!UNRESOLVED_REFERENCE!>Test<!>()
//FILE:b.kt
package b.d
public open class Test