Files
kotlin-fork/compiler/testData/diagnostics/tests/sealed/NeverDerivedFromNested.kt
T
Dmitriy Novozhilov f14bd87ecc [Test] Update testdata of diagnostic tests during to change language to 1.5
Mostly this commit contains changes of descriptor dump of sealed classes
  tests according to changed visibility of sealed class constructor
2021-01-28 13:19:24 +03:00

10 lines
133 B
Kotlin
Vendored

class A {
sealed class Base
}
class Derived : A.Base()
fun test() {
class DerivedLocal : <!SEALED_SUPERTYPE!>A.Base<!>()
}