47d5f83d04
#KT-3006 Fixed
9 lines
167 B
Kotlin
9 lines
167 B
Kotlin
open class Required(val value: String)
|
|
|
|
trait First : Required
|
|
|
|
trait Second : First
|
|
|
|
class <!UNMET_TRAIT_REQUIREMENT!>Y<!> : Second
|
|
class Z : Second, Required(":o)")
|