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

12 lines
150 B
Kotlin

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