summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/quickfix/specifySuperType/property.kt
blob: 86161d622bf079fcac9ffef97cc9d59bc326d41a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// "Specify supertype" "true"
interface X

open class Y {
    open val bar
        get() = 1
}

interface Z {
    val bar
        get() = 2
}

class Test : X, Z, Y() {
    override val bar: Int
        get() = <caret>super.bar
}