Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/selfAnnotationForClassObject.kt
T
Nikolay Lunyak 425d5e808b [FIR] Link some tests with issues
Just in case.

^KT-59874
2023-11-14 15:19:33 +00:00

12 lines
226 B
Kotlin
Vendored

// ISSUE: KT-63063
class Test {
@<!UNRESOLVED_REFERENCE!>ClassObjectAnnotation<!>
@NestedAnnotation
companion object {
annotation class ClassObjectAnnotation
}
annotation class NestedAnnotation
}