Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
lambdas
/
localFunction.kt.txt
blob: 00e1b57c0a0e1e42972f80d914d9ae952a777e39 [
file
]
fun outer() {
var x: Int = 0
local fun local() {
{ // BLOCK
val tmp_0: Int = x
x = tmp_0.inc()
tmp_0
} /*~> Unit */
}
local()
}