Files
kotlin-fork/compiler/testData/codegen/box/jvm8/simpleProperty.kt
T
2019-11-19 11:00:09 +03:00

15 lines
188 B
Kotlin
Vendored

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