Files
openide/java/java-tests/testData/psi/resolve/method/MultipleInheritancePathsToMethod.java
T
peter 1743362364 don't walk cached super methods more than once (red field.getName() problem)
make raw method substitutor apply only to this method
2011-03-29 13:17:04 +02:00

21 lines
260 B
Java

interface N1 {
String getName();
}
interface N2 {
String getName();
}
interface NN extends N1 {}
interface N3 {
String getName();
}
interface VeryNamed extends NN, N2, N3, N1 {}
class MyClass {
void foo(VeryNamed f) {
f.getNa<ref>me();
}
}