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

12 lines
161 B
Kotlin

fun foo() {
"before"
val bar = object {
{
val x = 1
}
fun foo() {
val a = 2
}
}
"after"
}