Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/RecursivelyAnnotatedProperty.fir.kt
T

5 lines
115 B
Kotlin
Vendored

// Properties can be recursively annotated
annotation class ann(val x: Int)
class My {
@ann(x) val x: Int = 1
}