Files
kotlin-fork/compiler/testData/diagnostics/tests/DiamondFunction.kt
T

11 lines
139 B
Kotlin
Vendored

// FIR_IDENTICAL
interface Base {
fun f() = 1
}
open class Left() : Base
interface Right : Base
class Diamond() : Left(), Right