Files
kotlin-fork/compiler/testData/codegen/box/jvmStatic/funAccess.kt
T
2016-11-09 21:41:12 +03:00

22 lines
300 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// WITH_RUNTIME
var holder = ""
fun getA(): A {
holder += "OK"
return A
}
object A {
@JvmStatic fun a(): String {
return holder
}
}
fun box(): String {
return getA().a()
}