Files
openide/java/java-tests/testData/codeInsight/highlight/remove_new/beforeMethodCallToField.java

10 lines
112 B
Java

// "Remove 'new'" "false"
class A {
int x() {
return new A.<caret>y();
}
public static int y = 1;
}