10 lines
103 B
Kotlin
10 lines
103 B
Kotlin
open class Ccc() {
|
|
fun foo() = 1
|
|
}
|
|
|
|
interface Ttt {
|
|
fun foo(): Int
|
|
}
|
|
|
|
class Zzz() : Ccc(), Ttt
|