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