Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/closureWithSideEffect.kt
2018-06-28 12:26:41 +02:00

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
}