13 lines
99 B
Kotlin
Vendored
13 lines
99 B
Kotlin
Vendored
interface Z {
|
|
|
|
fun test() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
interface Z2 {
|
|
|
|
val z: String
|
|
get() = "OK"
|
|
} |