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

12 lines
153 B
Kotlin

fun foo() {
"before"
object A {
{
val a = 1
}
fun foo() {
val b = 2
}
}
"after"
}