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

14 lines
114 B
Kotlin
Vendored

interface Z2 : Z {
}
class Z2Class : Z {
override fun test() {
}
}
fun main(args: Array<String>) {
}