mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
3 lines
162 B
Kotlin
Vendored
3 lines
162 B
Kotlin
Vendored
// Function parameter CAN be recursively annotated
|
|
annotation class ann(val x: Int)
|
|
fun foo(@ann(<!ANNOTATION_PARAMETER_MUST_BE_CONST!>foo(1)<!>) x: Int): Int = x |