10 lines
114 B
Kotlin
10 lines
114 B
Kotlin
trait Base {
|
|
fun f() = 1
|
|
}
|
|
|
|
open class Left() : Base
|
|
|
|
trait Right : Base
|
|
|
|
class Diamond() : Left(), Right
|