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

15 lines
201 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// TARGET_BACKEND: JVM
// WITH_RUNTIME
object X {
@JvmStatic val x = "OK"
fun fn(value : String = x): String = value
}
fun box(): String {
return X.fn()
}