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

10 lines
116 B
Kotlin
Vendored

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