Files
kotlin-fork/libraries/tools/kotlinp/testData/jvmDefault/All.kt
T
2021-11-09 15:09:29 +01:00

13 lines
128 B
Kotlin
Vendored

// !JVM_DEFAULT_MODE: all
interface A {
fun f() {}
fun g()
}
interface B : A {
override fun g() {}
}
class C : B