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

12 lines
164 B
Kotlin

fun foo() {
"before"
class A(val x: Int) {
{
val a = x
}
fun foo() {
val b = x
}
}
"after"
}