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