Files
kotlin-fork/compiler/testData/ir/irText/lambdas/localFunction.kt.txt
T
Vladimir Sukharev bae8b283c7 [IR] Normalize temp var names in Kotlin-like dump
^KT-61983 Fixed
2023-10-11 07:49:35 +00:00

13 lines
163 B
Kotlin
Vendored

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