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

6 lines
145 B
Kotlin
Vendored

// FIR_IDENTICAL
annotation class TestAnn(val x: Int)
class TestClass @TestAnn(1) constructor() {
@TestAnn(2) constructor(x: Int) : this()
}