Files
kotlin-fork/analysis/analysis-api/testData/symbols/symbolByReference/genericFromFunctionInLocalClass.kt
T
Roman Golyshev fa8bb47bdf [FIR IDE] Add unwrapping substitution overrides which doesn't affect function's signature
Also, do not use PSI to restore SUBSTITUTION_OVERRIDE function/property
symbols
2021-11-25 21:19:56 +03:00

14 lines
216 B
Kotlin
Vendored

// DO_NOT_CHECK_SYMBOL_RESTORE
package test
class SomeClass
fun <Outer> topLevel() {
open class Base {
fun withOuter(): Outer? = null
}
class Child : Base() {}
Child().<caret>withOuter()
}