Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/annotationOnClassWithInitializer.fir.kt.txt
T

19 lines
205 B
Plaintext
Vendored

annotation class SomeAnn : Annotation {
constructor() /* primary */
}
@SomeAnn
class My {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
init {
val x: Int = 1
}
}