fa8bb47bdf
Also, do not use PSI to restore SUBSTITUTION_OVERRIDE function/property symbols
15 lines
275 B
Kotlin
Vendored
15 lines
275 B
Kotlin
Vendored
package test
|
|
|
|
class Foo
|
|
|
|
abstract class Base<T> {
|
|
val noGeneric: Foo? = null
|
|
|
|
val withOuterGeneric: T? = null
|
|
|
|
val <TT> TT.withOwnGeneric: TT? get() = null
|
|
|
|
val <TT> TT.withOuterAndOwnGeneric: T? get() = null
|
|
}
|
|
|
|
class <caret>ClassWithGenericBase : Base<Foo>() |