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