98407a7c4b
A set of tests provided.
5 lines
155 B
Kotlin
Vendored
5 lines
155 B
Kotlin
Vendored
// Properties can be recursively annotated
|
|
annotation class ann(val x: Int)
|
|
class My {
|
|
ann(<!ANNOTATION_PARAMETER_MUST_BE_CONST!>x<!>) val x: Int = 1
|
|
} |