12 lines
181 B
Kotlin
Vendored
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
|