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

22 lines
267 B
Plaintext
Vendored

open annotation class TestAnn : Annotation {
constructor(x: String) /* primary */ {
super/*Any*/()
/* <init>() */
}
val x: String
field = x
get
}
val testVal: String
field = "a val"
get
var testVar: String
field = "a var"
get
set