Files
kotlin-fork/compiler/testData/codegen/boxInline/defaultValues/kt5685.1.kt
T

11 lines
139 B
Kotlin
Vendored

import test.*
fun box(): String {
var s1 = ""
val s2 = Measurements().measure("K") {
s1 = "O"
}
return s1 + s2
}