Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/propertiesWithAnnotations.kt.txt
T

14 lines
195 B
Plaintext
Vendored

annotation class TestAnn : Annotation {
constructor(x: String) /* primary */
val x: String
field = x
get
}
@TestAnn(x = "testVal.property")
val testVal: String
field = ""
get