Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/fieldsWithAnnotations.kt.txt
T
2024-02-16 10:19:38 +00:00

23 lines
268 B
Kotlin
Vendored

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