fa8bb47bdf
Also, do not use PSI to restore SUBSTITUTION_OVERRIDE function/property symbols
17 lines
268 B
Kotlin
Vendored
17 lines
268 B
Kotlin
Vendored
// DO_NOT_CHECK_SYMBOL_RESTORE
|
|
package test
|
|
|
|
class SomeClass
|
|
|
|
class TopLevel<Outer> {
|
|
inner open class Base<T> {
|
|
fun withOuter(): Outer? = null
|
|
}
|
|
|
|
inner class Child : Base<SomeClass> {}
|
|
|
|
fun usage() {
|
|
Child().<caret>withOuter()
|
|
}
|
|
}
|