Files
kotlin-fork/compiler/testData/cfg-variables/lexicalScopes/objectLiteralScope.kt
T
2015-04-29 14:07:05 +02:00

12 lines
166 B
Kotlin
Vendored

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