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

18 lines
213 B
Kotlin
Vendored

open annotation class TestAnn : Annotation {
val x: Int
field = x
get
constructor(x: Int) /* primary */ {
super/*Any*/()
/* <init>() */
}
}
@TestAnn(x = 42)
fun testSimpleFunction() {
}