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

18 lines
208 B
Plaintext
Vendored

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