Files
openide/java/java-tests/testData/refactoring/introduceFunctionalVariable/beforeIgnoreMethodObjectSuggestion.java
Anna Kozlova cb2eaa99e1 extract functional: don't show error dialogs (IDEA-174180)
unable to perform in complex cases instead
2017-06-08 17:49:08 +03:00

8 lines
168 B
Java

class Test {
{
int x = 0, y;
<selection>y = ++x;</selection>
System.out.println("x = " + x);
System.out.println("y = " + y);
}
}