Files
openide/java/java-tests/testData/refactoring/inlineParameter/RefNewInnerFromMethod.java

16 lines
283 B
Java

public class Subject {
private int myInt;
public void withClass(Object <caret>o) {
myInt += o.hashCode();
}
private void oper() throws IOException {
Subject subj = new Subject();
class Local {
}
subj.withClass(new Local());
}
}