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

11 lines
120 B
Kotlin
Vendored

// FIR_IDENTICAL
open class Ccc() {
fun foo() = 1
}
interface Ttt {
fun foo(): Int
}
class Zzz() : Ccc(), Ttt