mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
10 lines
165 B
Kotlin
Vendored
10 lines
165 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
|
|
var result = "FAIL"
|
|
|
|
fun box(): String {
|
|
val r = Runnable { result = "OK" }
|
|
r.run()
|
|
return result
|
|
} |