Files
kotlin-fork/compiler/testData/codegen/box/closures/capturedVarsOptimization/capturedInInlineOnlyAssign.kt
T
2018-08-15 13:35:14 +03:00

7 lines
87 B
Kotlin
Vendored

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