Files
kotlin-fork/compiler/testData/diagnostics/tests/DiamondFunction.kt
T
2015-04-13 16:22:22 +03:00

10 lines
114 B
Kotlin

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