7dde3603b5
#KT-54781 Fixed
19 lines
233 B
Kotlin
Vendored
19 lines
233 B
Kotlin
Vendored
// FILE: byteArray.kt
|
|
|
|
package Test
|
|
|
|
interface ByteArray {
|
|
val array: ByteArray
|
|
}
|
|
|
|
// FILE: main.kt
|
|
|
|
package use
|
|
|
|
import <!UNRESOLVED_IMPORT!>test<!>.*
|
|
|
|
interface My {
|
|
// Should be kotlin.ByteArray
|
|
val array: ByteArray
|
|
}
|