Files
kotlin/compiler/testData/codegen/java8/box/jvm8/simpleProperty.kt

13 lines
135 B
Kotlin
Vendored

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