mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
4 lines
206 B
Kotlin
Vendored
4 lines
206 B
Kotlin
Vendored
// 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 |