Files
kotlin-fork/compiler/testData/diagnostics/tests/objects/kt21515/annotationConstructor.fir.kt
T

13 lines
213 B
Kotlin
Vendored

// !LANGUAGE: -ProhibitVisibilityOfNestedClassifiersFromSupertypesOfCompanion
open class Base {
companion object {
annotation class Foo
}
}
class Derived : Base() {
@Foo
fun foo() = 42
}