Files
kotlin-fork/compiler/testData/diagnostics/tests/sourceCompatibility/noTopLevelSealedInheritance.kt
T
Alexander Udalov 7cb61b81ab Minor, capitalize language feature names in tests
To simplify textual search across the codebase
2016-05-26 22:21:22 +03:00

6 lines
107 B
Kotlin
Vendored

// !LANGUAGE: -TopLevelSealedInheritance
sealed class Base
class Derived : <!SEALED_SUPERTYPE!>Base<!>()