Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/problems/falseIntersection.kt
T

11 lines
160 B
Kotlin
Vendored

interface A {
fun foo() {}
}
interface B : A {
override fun foo() {}
}
// We should not have intersection override foo() in this class
class C : B, A