Files
kotlin-fork/compiler/testData/codegen/box/objects/kt2663_2.kt
T

14 lines
275 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
fun box() : String {
var a = 1
(object: Runnable {
override public fun run() {
a = 2
}
}).run()
return if (a == 2) "OK" else "fail"
}