Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/annotationOnClassWithInitializer.kt.txt
T
2021-09-23 06:59:33 +00:00

23 lines
255 B
Plaintext
Vendored

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