Files
kotlin-fork/compiler/testData/asJava/lightClasses/ExtendingInterfaceWithDefaultImpls.kt
T
2022-06-14 17:18:09 +00:00

18 lines
191 B
Kotlin
Vendored

// p.C
package p
interface A {
fun a() = "a"
}
interface B: A {
fun b() = "b"
}
interface C : B {
fun c() = "c"
}
// TODO: could be lazy
// see KT-22819
// LAZINESS:NoLaziness