bae8b283c7
^KT-61983 Fixed
13 lines
163 B
Kotlin
Vendored
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()
|
|
}
|