9 lines
167 B
Kotlin
9 lines
167 B
Kotlin
open class Required(val value: String)
|
|
|
|
trait First : Required
|
|
|
|
trait Second : First
|
|
|
|
<!UNMET_TRAIT_REQUIREMENT!>class Y<!> : Second
|
|
class Z : Second, Required(":o)")
|