Files
openide/java/java-tests/testData/codeInsight/completion/reflectionOverload/ShadowedMethod.java

13 lines
187 B
Java

class Main {
void foo() {
Test.class.getMethod("<caret>");
}
}
class Test extends Parent {
public static void shadowed(){}
}
class Parent {
public static void shadowed(){}
}