dd824aacb6
This reverts commit 43b4df74bc.
15 lines
129 B
Kotlin
Vendored
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"
|
|
}
|