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

23 lines
259 B
Kotlin
Vendored

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