Files
kotlin-fork/idea/testData/codegen/classes/diamondInheritance.jet
T
2011-06-15 18:00:22 +04:00

22 lines
363 B
Plaintext

class Base() {
public var v : Int
}
class Left() : Base() {}
class Right() : Base() {}
class D() : Left(), Right()
fun vl(l : Left) : Int = l.v
fun vr(r : Right) : Int = r.v
fun box() : String {
val d = D()
d.v = 42
if (d.v != 42) return "Fail #1"
if (vl(d) != 42) return "Fail #2"
if (vr(d) != 42) return "Fail #3"
return "OK"
}