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

12 lines
158 B
Kotlin
Vendored

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