Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/platformStatic/propertyAsDefault.kt
T
2015-09-18 10:14:32 +03:00

11 lines
173 B
Kotlin
Vendored

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