Files
kotlin-fork/compiler/testData/compileKotlinAgainstCustomBinaries/target6MultiInheritance/target6.kt
T
2016-10-03 14:13:17 +03:00

13 lines
99 B
Kotlin
Vendored

interface Z {
fun test() {
}
}
interface Z2 {
val z: String
get() = "OK"
}