Files
kotlin-fork/compiler/testData/diagnostics/tests/sealed/DerivedTopLevel.fir.kt
T
2021-02-09 16:04:39 +03:00

11 lines
151 B
Kotlin
Vendored

sealed class Base
class Derived: Base() {
class Derived2: Base()
}
fun test() {
class Local: <!SEALED_SUPERTYPE_IN_LOCAL_CLASS!>Base<!>()
}