Files
kotlin-fork/compiler/testData/loadKotlin/annotations/classMembers/PropertyField.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

8 lines
87 B
Kotlin

package test
annotation class Anno
class Class {
[Anno] var property: Int = 42
}