blob: 29c4b57ccdced6d70d0649e5e78d2a1177b3e039 [file]
// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE
// IGNORE_FE10
package test
class SomeClass
fun <Outer> topLevel() {
open class Base {
fun withOuter(): Outer? = null
}
class Child : Base() {}
Child().<caret>withOuter()
}