Files
kotlin-fork/compiler/testData/cfg/declarations/properties/backingFieldAccess.kt
T
2015-04-29 14:07:05 +02:00

8 lines
73 B
Kotlin

class C {
val a: Int
get() = 1
init {
$a
}
}