Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/functionsWithAnnotations.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

12 lines
161 B
Plaintext
Vendored

annotation class TestAnn : Annotation {
constructor(x: Int) /* primary */
val x: Int
field = x
get
}
@TestAnn(x = 42)
fun testSimpleFunction() {
}