IDEA-111523 (the intention is only supposed to work inside regular assignment)

This commit is contained in:
Roman Shevchenko
2013-08-05 21:37:14 +02:00
parent d6c5bb898a
commit b993b94f0e
2 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
// "Move assignment to field declaration" "false"
class Wtf {
int myWtf;
void whatever() {
<caret>myWtf = Math,max(myWtf, getWtf());
}
int getWtf() { return 42; }
}