In Kotlin we'll have possibility to create a "trait that may require a class being extended on the call side", like
class Bar {}
trait T1 : Bar {}
class Foo : Bar, T1, T2, T3 {}
class Wrong : T1, T2 //error: Wrong should extend Bar
I can't imagine any flow where I can apply this structure. Can anyone tell me why we need it?