Files
openide/java/java-tests/testData/inspection/reflectionAccess/afterMethodDeclaredInSuper.java
T

6 lines
101 B
Java

// "Use 'getMethod()'" "true"
class X {
void test() {
String.class.getMethod("getClass");
}
}