Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/closureWithSideEffect.kt
2019-11-19 11:00:09 +03:00

11 lines
170 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun box(): String {
var result = "Fail"
fun changeToOK() { result = "OK" }
val ok = ::changeToOK
ok()
return result
}