Files
openide/java/java-tests/testData/refactoring/extractMethodNew/FieldGroupAnchor_after.java
Alexandr Suhinin 68603732dc EA-232230: extract method: choose correct anchor inside of field group
GitOrigin-RevId: dfcb53fe75f0f0bc4dd73e2167c5f07a321f095b
2020-07-07 07:58:05 +00:00

7 lines
127 B
Java

public class Test {
int x = newMethod(), y, /*comment*/ z = 0;
private int newMethod() {
return 2 + 2;
}
}