3 lines
104 B
Kotlin
Vendored
3 lines
104 B
Kotlin
Vendored
// Properties can be recursively annotated
|
|
annotation class ann(val x: Int)
|
|
@ann(x) const val x: Int = 1 |