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

12 lines
295 B
Plaintext

package test
internal final annotation class Anno : jet.Annotation {
/*primary*/ public constructor Anno()
}
internal final class Class {
/*primary*/ public constructor Class()
test.Anno() internal final val property: jet.Int
internal final fun <get-property>(): jet.Int
}