Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/propertiesWithAnnotations.kt.txt
T
2021-09-23 06:59:33 +00:00

18 lines
244 B
Plaintext
Vendored

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