Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/inline/kt9644let.kt
T

10 lines
119 B
Kotlin
Vendored

fun foo() {
with(1) {
return (1..2).forEach { it }
}
}
fun box(): String {
foo()
return "OK"
}