public open class Z { fun zzz() { } } // SIBLING: public class A(): Z() { var a: Int = 1 fun foo(): Int { super.zzz() return a + 1 } }