replace operator assignment with assignment (IDEA-137214)

This commit is contained in:
Anna Kozlova
2015-06-26 12:24:32 +03:00
parent f7f168a97e
commit db73973674
8 changed files with 71 additions and 34 deletions
@@ -0,0 +1,6 @@
// "Join declaration and assignment" "true"
class Test {
{
int i = 4 * (2 + 3);
}
}
@@ -0,0 +1,7 @@
// "Join declaration and assignment" "true"
class Test {
{
int i = 4;
i *<caret>= 2 + 3;
}
}