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

17 lines
179 B
Plaintext
Vendored

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