Files
kotlin/compiler/testData/codegen/boxWithStdlib/platformStatic/propertyAsDefault.kt
Michael Bogdanov 2cc9d8e29b Support platformStatic for properties
#KT-5766 Fixed
2014-11-20 10:20:31 +03:00

11 lines
172 B
Kotlin

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