Files
kotlin-fork/compiler/testData/asJava/lightClasses/ExtendingInterfaceWithDefaultImpls.kt
T
Dmitry Gridin 97ce502cbe [light classes] drop old light classes and backend: iteration #2
drop javaFileStub and fix tests

^KT-48773
2022-06-28 11:44:39 +00:00

15 lines
129 B
Kotlin
Vendored

// p.C
package p
interface A {
fun a() = "a"
}
interface B: A {
fun b() = "b"
}
interface C : B {
fun c() = "c"
}