class Derived: Base() { fun test() { super.test() } } open class Base { fun test() {} } // EXPECTED: super.test()