inline: warn if assignment with operation (IDEA-80348)

This commit is contained in:
Anna Kozlova
2012-01-27 21:47:55 +04:00
parent 0280937111
commit c36419f867
3 changed files with 14 additions and 1 deletions
@@ -0,0 +1,7 @@
class Test {
void foo() {
int x = 1;
x += 1;
int y = <caret>x;
}
}