KT-3503 Can't navigate to implementation of kotlin functions
#KT-3503 Fixed
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
public class BaseJava {
|
||||
public void testMethod() {
|
||||
|
||||
}
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
package testing.kt
|
||||
|
||||
class TestFromJava() : BaseJava() {
|
||||
override fun testMethod() {
|
||||
}
|
||||
}
|
||||
|
||||
fun test() {
|
||||
BaseJava().testMethod<caret>()
|
||||
}
|
||||
|
||||
// REF: (in testing.kt.TestFromJava).testMethod()
|
||||
// REF: (in BaseJava).testMethod()
|
||||
Reference in New Issue
Block a user