extract functional: don't show error dialogs (IDEA-174180)

unable to perform in complex cases instead
This commit is contained in:
Anna Kozlova
2017-06-08 17:49:08 +03:00
parent 703283b008
commit cb2eaa99e1
3 changed files with 36 additions and 1 deletions
@@ -0,0 +1,8 @@
class Test {
{
int x = 0, y;
<selection>y = ++x;</selection>
System.out.println("x = " + x);
System.out.println("y = " + y);
}
}