Files
kotlin/compiler/testData/diagnostics/tests/DiamondFunction.kt
2015-05-12 19:43:17 +02:00

10 lines
122 B
Kotlin
Vendored

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