15 lines
184 B
Kotlin
Vendored
15 lines
184 B
Kotlin
Vendored
interface A {
|
|
fun foo() {}
|
|
}
|
|
|
|
interface B : A {
|
|
abstract override fun foo()
|
|
}
|
|
|
|
interface C {
|
|
abstract fun foo()
|
|
}
|
|
|
|
// Fake override Z#foo should be abstract
|
|
class Z : B, C
|