Files
openide/java/java-tests/testData/psi/resolve/method/MultipleInheritancePathsToMethod.java
2019-01-02 16:35:41 +01:00

21 lines
262 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<caret>me();
}
}