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

24 lines
256 B
Kotlin
Vendored

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