java highlight usages in file: highlight usages of a method when its super method is from alternative jdk

This commit is contained in:
Dmitry Batkovich
2017-01-18 19:17:19 +03:00
parent e323aa8b9c
commit de021824a4
5 changed files with 53 additions and 0 deletions
@@ -0,0 +1,8 @@
package p;
public class Object7 {
@Override
public int hashCode() {
return 78;
}
}
@@ -0,0 +1,7 @@
package p;
class Test {
static void mmm(p.Object7 o) {
o.has<caret>hCode();
}
}