Files
kotlin-fork/compiler/testData/codegen/java8/box/jvm8/defaults/simpleProperty.kt
T
2018-04-03 19:18:09 +02:00

16 lines
207 B
Kotlin
Vendored

// !API_VERSION: 1.3
// JVM_TARGET: 1.8
// WITH_RUNTIME
interface Z {
@kotlin.annotations.JvmDefault
val z: String
get() = "OK"
}
class Test : Z
fun box() : String {
return Test().z
}