Files
kotlin-fork/compiler/testData/diagnostics/tests/traitWithRequired/abstractClass.kt
T
2015-05-12 19:43:17 +02:00

7 lines
213 B
Kotlin
Vendored

open class Required
interface Trait : <!TRAIT_WITH_SUPERCLASS!>Required<!>
abstract <!UNMET_TRAIT_REQUIREMENT!>class Abstract<!> : Trait
abstract <!UNMET_TRAIT_REQUIREMENT!>class AbstractDerived<!> : Abstract()