4bd604f2ed
^KT-54311
16 lines
240 B
Kotlin
Vendored
16 lines
240 B
Kotlin
Vendored
// 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()
|
|
} |