13 lines
171 B
Kotlin
Vendored
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
|