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

9 lines
203 B
Kotlin
Vendored

open class Required(val value: String)
interface First : <!TRAIT_WITH_SUPERCLASS!>Required<!>
interface Second : First
<!UNMET_TRAIT_REQUIREMENT!>class Y<!> : Second
class Z : Second, Required(":o)")