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

11 lines
128 B
Plaintext

open class Base() {
var v : Int = 0
}
open class Left() : Base()
trait Right : Base
class Diamond() : Left(), Right