12 lines
138 B
Kotlin
Vendored
12 lines
138 B
Kotlin
Vendored
interface A {
|
|
fun test(): String = "A"
|
|
}
|
|
|
|
interface B : A {
|
|
override fun test(): Unit = "B"
|
|
}
|
|
|
|
open class C : A
|
|
|
|
class D : C(), B
|