Files
kotlin-fork/analysis/analysis-api/testData/symbols/symbolByReference/genericFromFunctionInLocalClass.kt
T
2022-11-10 06:39:14 +00:00

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()
}