Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/jvmStatic/propertyAsDefault.kt
T

9 lines
129 B
Kotlin
Vendored

object X {
@JvmStatic val x = "OK"
fun fn(value : String = x): String = value
}
fun box(): String {
return X.fn()
}