2dc0404751
and produce an error on ambiguity.
14 lines
291 B
Kotlin
Vendored
14 lines
291 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// FILE: File.kt
|
|
package pack
|
|
|
|
public open class InetAddressImpl
|
|
|
|
// FILE: Main.kt
|
|
package a
|
|
|
|
import java.net.* // should not import java.net.InetAddressImpl because it's package local
|
|
import pack.*
|
|
|
|
class X : InetAddressImpl() // should resolve to our pack.InetAddressImpl
|