mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
replace operator assignment with assignment (IDEA-137214)
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
// "Join declaration and assignment" "true"
|
||||
class Test {
|
||||
{
|
||||
int i = 4 * (2 + 3);
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
// "Join declaration and assignment" "true"
|
||||
class Test {
|
||||
{
|
||||
int i = 4;
|
||||
i *<caret>= 2 + 3;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user