Files
kotlin-fork/compiler/testData/cfg-variables/lexicalScopes/localFunctionScopeWithoutBody.kt
T
2014-03-07 21:08:16 +04:00

6 lines
82 B
Kotlin
Vendored

fun foo() {
"before"
val b = 1
fun local(x: Int) = x + b
"after"
}