Files
kotlin/compiler/testData/codegen/boxWithStdlib/platformStatic/funAccess.kt
2014-11-20 10:20:33 +03:00

19 lines
230 B
Kotlin

import kotlin.platform.platformStatic
var holder = ""
fun getA(): A {
holder += "OK"
return A
}
object A {
platformStatic fun a(): String {
return holder
}
}
fun box(): String {
return getA().a()
}