Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/constructorsWithAnnotations.kt
T
2018-04-09 11:24:37 +03:00

5 lines
128 B
Kotlin
Vendored

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