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

12 lines
169 B
Kotlin
Vendored

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