How do I get a reference to a property of my `supe...
# announcements
v
How do I get a reference to a property of my
super
class? With getter that would be:
Copy code
open class A {
    open fun getX() = 1
}

class B : A() {
    override fun getX() = super.getX()
}