Files
kotlin-fork/compiler/testData/codegen/box/contracts/runLambdaForVal.kt
T
2024-02-26 13:38:49 +00:00

13 lines
146 B
Kotlin
Vendored

// WITH_STDLIB
import kotlin.test.*
fun box(): String {
val x: Int
run {
x = 42
}
assertEquals(x, 42)
return "OK"
}