Tagged Questions
2
votes
1answer
135 views
Understanding traits in Kotlin
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 : ...