c656a83a02
This code with `b()` crashes the JVM backend. ^KT-59822 Fixed ^KT-59874
6 lines
156 B
Kotlin
Vendored
6 lines
156 B
Kotlin
Vendored
// Properties can be recursively annotated
|
|
annotation class ann(val x: Int)
|
|
class My {
|
|
@ann(<!ANNOTATION_ARGUMENT_MUST_BE_CONST!>x<!>) val x: Int = 1
|
|
}
|