Files
kotlin-fork/compiler/testData/diagnostics/tests/DiamondProperty.kt
T

13 lines
171 B
Kotlin
Vendored

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