Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/propertiesWithAnnotations.kt.txt
T
2020-11-26 00:14:16 +03:00

17 lines
198 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