d2b9b487c7
^KT-63223
17 lines
240 B
Kotlin
Vendored
17 lines
240 B
Kotlin
Vendored
// FE1.0 can resolve to `kotlin` package when it's not allowed
|
|
// IGNORE_FE10
|
|
// UNRESOLVED_REFERENCE
|
|
// COMPILATION_ERRORS
|
|
// FILE: a.kt
|
|
package kotlin.pckg
|
|
|
|
fun foo() {
|
|
b<caret>ar()
|
|
}
|
|
|
|
// FILE: b.kt
|
|
package kotlin.pckg
|
|
|
|
fun bar() {
|
|
}
|