mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
11 lines
166 B
Kotlin
Vendored
11 lines
166 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
fun box(): String {
|
|
var result = "Fail"
|
|
|
|
fun changeToOK() { result = "OK" }
|
|
|
|
val ok = ::changeToOK
|
|
ok()
|
|
return result
|
|
}
|