fa8bb47bdf
Also, do not use PSI to restore SUBSTITUTION_OVERRIDE function/property symbols
16 lines
265 B
Kotlin
Vendored
16 lines
265 B
Kotlin
Vendored
package test
|
|
|
|
class Foo
|
|
|
|
abstract class Base<T> {
|
|
fun noGeneric() {}
|
|
|
|
fun withOuterGeneric(t: T) {}
|
|
|
|
fun <TT> withOwnGeneric(tt: TT) {}
|
|
|
|
fun <TT> withOuterAndOwnGeneric(t: T, tt: TT) {}
|
|
}
|
|
|
|
class <caret>ClassWithGenericBase : Base<Foo>()
|