10 lines
161 B
Kotlin
Vendored
10 lines
161 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
|
|
var result = "FAIL"
|
|
|
|
fun box(): String {
|
|
val r = Runnable { result = "OK" }
|
|
r.run()
|
|
return result
|
|
} |