Fix absence of reference for type parameters
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package testing
|
||||
|
||||
fun <T> someFun() {
|
||||
fun innerFun(a: <caret>T) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// REF: T
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
class A<X> {
|
||||
fun foo(a: <caret>X) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// REF: X
|
||||
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
class A
|
||||
|
||||
class Test {
|
||||
fun some(a: <caret>A) = 12
|
||||
}
|
||||
|
||||
// REF: (test).A
|
||||
Reference in New Issue
Block a user