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

10 lines
100 B
Kotlin
Vendored

// FIR_IDENTICAL
annotation class SomeAnn
@SomeAnn
class My {
init {
val x = 1
}
}