Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/danglingAnnotation.fir.kt
T
2023-11-29 10:24:02 +00:00

10 lines
210 B
Kotlin
Vendored

annotation class Anno(val position: String)
interface OriginalInterface {
companion object {
private const val prop = 0
}
@Anno("dangling $<!UNRESOLVED_REFERENCE!>prop<!>")<!SYNTAX!><!>
}