Files
kotlin-fork/compiler/testData/diagnostics/tests/override/FakeOverrideModality1.fir.kt
T

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