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

19 lines
231 B
Kotlin
Vendored

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()
}