Files
kotlin/compiler/testData/codegen/java8/box/jvm8/simpleProperty.kt
2016-10-03 13:50:11 +03:00

13 lines
136 B
Kotlin
Vendored

// JVM_TARGET: 1.8
interface Z {
val z: String;
get() = "OK"
}
class Test : Z
fun box() : String {
return Test().z
}