// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE // IGNORE_FE10 package test class SomeClass fun topLevel() { open class Base { fun withOuter(): Outer? = null } class Child : Base() {} Child().withOuter() }