Files
kotlin/compiler/testData/diagnostics/tests/DiamondFunction.jet
2012-02-04 11:59:57 +04:00

10 lines
123 B
Plaintext

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