13 lines
152 B
Kotlin
Vendored
13 lines
152 B
Kotlin
Vendored
interface A {
|
|
fun b(a : Int)
|
|
}
|
|
|
|
interface B : A {}
|
|
|
|
class C1 : A {
|
|
override fun b(b : Int) {}
|
|
}
|
|
|
|
class C2 : B {
|
|
override fun b(b : Int) {}
|
|
} |