Files
kotlin-fork/compiler/testData/diagnostics/tests/DiamondProperty.kt
T
2018-05-04 18:04:57 +03:00

12 lines
181 B
Kotlin
Vendored

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