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