Fix being unable to find declaration for substituted callable from library
#KT-5900 Fixed #KT-5901 Fixed
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
import dependency.D
|
||||
|
||||
class C: D<Int>() {
|
||||
<caret>
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
import dependency.D
|
||||
|
||||
class C: D<Int>() {
|
||||
|
||||
override fun id(t: Int): Int {
|
||||
return super<D>.id(t)
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package dependency
|
||||
|
||||
public open class D<T> {
|
||||
public open fun id(t: T): T {
|
||||
return t
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user