1 open class Foo() { 2 open val xyzzy: Int get() = 0 3 } 4 5 class Bar(): Foo() { 6 override val xyzzy: Int get() = 1 7 } 8