11 lines
160 B
Kotlin
Vendored
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
|