Files
kotlin-fork/compiler/testData/ir/irText/lambdas/localFunction.kt.txt
T

14 lines
161 B
Plaintext
Vendored

fun outer() {
var x: Int = 0
local fun local() {
{ // BLOCK
val tmp0: Int = x
x = tmp0.inc()
tmp0
} /*~> Unit */
}
local()
}