Files
kotlin-fork/compiler/testData/cfg/localProperty.kt
T
Svetlana Isakova aa713ef1f6 generate pseudocode for property accessor only if the property is local
otherwise check it independently like a function
2014-02-12 12:48:12 +04:00

9 lines
138 B
Kotlin

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