3 lines
100 B
Kotlin
Vendored
3 lines
100 B
Kotlin
Vendored
// Functions can be recursively annotated
|
|
annotation class ann(val x: Int)
|
|
@ann(foo()) fun foo() = 1 |