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

19 lines
245 B
Kotlin
Vendored

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