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

5 lines
65 B
Kotlin
Vendored

fun outer() {
var x = 0
fun local() { x++ }
local()
}