Files
kotlin-fork/compiler/testData/cfg/declarations/local/localProperty.kt
T
2014-03-07 21:08:14 +04:00

9 lines
138 B
Kotlin
Vendored

fun foo() {
class B {
val a: Int
get() {
val b: Int
return b
}
}
}