f124ba627d
This is a contract violation – we can touch only bodies during this phase ^KT-56551
6 lines
224 B
Kotlin
Vendored
6 lines
224 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// Functions can be recursively annotated
|
|
annotation class ann(val x: Int)
|
|
@ann(<!ANNOTATION_ARGUMENT_MUST_BE_CONST!>bar()<!>) fun foo() = 1
|
|
@ann(<!ANNOTATION_ARGUMENT_MUST_BE_CONST!>foo()<!>) fun bar() = 2
|