Extension callables index is built correctly when using alias imports
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
package second
|
||||
|
||||
import third.Dependency as MyDependency
|
||||
|
||||
fun MyDependency?.helloFun() {
|
||||
}
|
||||
|
||||
fun <T: MyDependency> T.helloFunGeneric() {
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package third
|
||||
|
||||
class Dependency
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package first
|
||||
|
||||
fun firstFun(x: third.Dependency) {
|
||||
x.hello<caret>
|
||||
}
|
||||
|
||||
// EXIST: helloFun
|
||||
// EXIST: helloFunGeneric
|
||||
// NUMBER: 2
|
||||
Reference in New Issue
Block a user