47ecaa5b06
Otherwise overload resolution ambiguity is reported in the test
39 lines
479 B
Kotlin
Vendored
39 lines
479 B
Kotlin
Vendored
// MODULE: m1
|
|
// FILE: a.kt
|
|
package p
|
|
|
|
public interface B {
|
|
public fun getParent(): B?
|
|
}
|
|
|
|
// MODULE: m2(m1)
|
|
// FILE: b.kt
|
|
package p
|
|
|
|
public interface C : B {
|
|
override fun getParent(): B?
|
|
|
|
}
|
|
|
|
// MODULE: m3
|
|
// FILE: b.kt
|
|
package p
|
|
|
|
public interface B {
|
|
public fun getParent(): B?
|
|
}
|
|
|
|
public interface D : B {
|
|
override fun getParent(): B?
|
|
}
|
|
|
|
// MODULE: m4(m3, m2)
|
|
// FILE: c.kt
|
|
import p.*
|
|
|
|
fun test(b: B?) {
|
|
if (b is C && b is D) {
|
|
b?.getParent()
|
|
}
|
|
}
|