trait A { val f: Int get() = 2 } trait B : A trait C : B, A class SomeClass() : C { override val f: Int = 4 }