Files
kotlin-fork/compiler/testData/ir/irText/classes/annotationClasses.kt
T
Dmitry Petrov 4016254fd4 Generate constructors with empty bodies for annotation classes
Default parameter values of primary constructor of an annotation class
are required to generate default values of annotation properties.
2018-04-09 11:24:37 +03:00

7 lines
156 B
Kotlin
Vendored

annotation class Test1(val x: Int)
annotation class Test2(val x: Int = 0)
annotation class Test3(val x: Test1)
annotation class Test4(vararg val xs: Int)