aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/properties/propertyOverride.kt
blob: 625d1da0be523686973c156ffd192b93c90692dd (plain)
1
2
3
4
5
6
7
open class Foo() {
    open val xyzzy: Int get() = 0
}

class Bar(): Foo() {
    override val xyzzy: Int get() = 1
}