4016254fd4
Default parameter values of primary constructor of an annotation class are required to generate default values of annotation properties.
7 lines
156 B
Kotlin
Vendored
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) |