37fb8d6306
Probably because of this commit: https://github.com/JetBrains/intellij-community/commit/7d95ff4d86e584d66d558559a1a4678920281ca1
29 lines
521 B
Java
Vendored
29 lines
521 B
Java
Vendored
public class ImplementJavaInnerInterface {
|
|
interface Test {
|
|
void <caret>foo();
|
|
}
|
|
|
|
void test() {
|
|
Test test = new Test() {
|
|
@Override
|
|
public void foo() {
|
|
|
|
}
|
|
};
|
|
}
|
|
|
|
public static class OtherJava implements Test {
|
|
@Override
|
|
public void foo() {
|
|
|
|
}
|
|
}
|
|
|
|
void usage(Test test) {
|
|
test.foo();
|
|
}
|
|
}
|
|
|
|
// REF: (in ImplementJavaInnerInterface.OtherJava).foo()
|
|
// REF: (in KotlinTest).foo()
|
|
// REF: <anonymous>.foo() |