Files
kotlin-fork/native/native.tests/testData/codegen/contracts/runLambdaForVal.kt
T
Vladimir Sukharev df2dcccbf7 [Tests] Removed moved tests from old testing
^KT-64256 Fixed
2023-12-18 11:15:15 +00:00

12 lines
131 B
Kotlin
Vendored

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