Files
kotlin-fork/compiler/testData/codegen/box/closures/capturedVarsOptimization/capturedInInlineOnlyAssign.kt
T
2020-03-05 16:48:48 +03:00

7 lines
87 B
Kotlin
Vendored

// WITH_RUNTIME
fun box(): String {
var x = ""
run { x = "OK" }
return x
}