Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/classesInClassObjectHeader.fir.kt
T

12 lines
298 B
Kotlin
Vendored

class Test {
@`InnerAnnotation` <!REPEATED_ANNOTATION!>@InnerAnnotation<!>
companion object : StaticClass(), <!MANY_CLASSES_IN_SUPERTYPE_LIST, UNRESOLVED_REFERENCE!>InnerClass<!>() {
}
annotation class InnerAnnotation
open class StaticClass
open inner class InnerClass
}