Files
kotlin-fork/compiler/testData/loadKotlin/annotations/classMembers/PropertyNoField.kt
T
Alexander Udalov 87d4e35388 Deserialize annotations on class properties w/o fields
Annotations on properties without backing fields are stored on a special
synthesized method inside the class
2013-08-23 17:39:21 +04:00

9 lines
101 B
Kotlin

package test
annotation class Anno
class Class {
[Anno] val property: Int
get() = 42
}