Fix tests for looking implementations from Java - no search for Kotlin declaration from usages
Probably because of this commit: https://github.com/JetBrains/intellij-community/commit/7d95ff4d86e584d66d558559a1a4678920281ca1
This commit is contained in:
+10
-2
@@ -1,6 +1,6 @@
|
||||
public class ImplementJavaInnerInterface {
|
||||
interface Test {
|
||||
void foo();
|
||||
void <caret>foo();
|
||||
}
|
||||
|
||||
void test() {
|
||||
@@ -12,10 +12,18 @@ public class ImplementJavaInnerInterface {
|
||||
};
|
||||
}
|
||||
|
||||
public static class OtherJava implements Test {
|
||||
@Override
|
||||
public void foo() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
void usage(Test test) {
|
||||
test.<caret>foo();
|
||||
test.foo();
|
||||
}
|
||||
}
|
||||
|
||||
// REF: (in ImplementJavaInnerInterface.OtherJava).foo()
|
||||
// REF: (in KotlinTest).foo()
|
||||
// REF: <anonymous>.foo()
|
||||
Reference in New Issue
Block a user