correctly find usages of overridden Java method through synthetic accessors

#KT-12869 Fixed
This commit is contained in:
Dmitry Jemerov
2016-07-14 13:40:28 +02:00
parent e2b836db09
commit 14037f099c
5 changed files with 41 additions and 6 deletions
@@ -0,0 +1,10 @@
// PSI_ELEMENT: com.intellij.psi.PsiMethod
// OPTIONS: usages
public interface AI {
String <caret>getFoo();
public class A implements AI {
@Override
public String getFoo() {return "";}
}
}