11 lines
139 B
Kotlin
Vendored
11 lines
139 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
interface Base {
|
|
fun f() = 1
|
|
}
|
|
|
|
open class Left() : Base
|
|
|
|
interface Right : Base
|
|
|
|
class Diamond() : Left(), Right
|