13 lines
213 B
Kotlin
Vendored
13 lines
213 B
Kotlin
Vendored
// !LANGUAGE: -ProhibitVisibilityOfNestedClassifiersFromSupertypesOfCompanion
|
|
|
|
open class Base {
|
|
companion object {
|
|
annotation class Foo
|
|
}
|
|
}
|
|
|
|
class Derived : Base() {
|
|
|
|
@Foo
|
|
fun foo() = 42
|
|
} |