Files
openide/java/java-tests/testData/codeInsight/joinLines/AssignmentExpressionPrecedence_after.java
T
Tagir Valeev 7730b97ee4 DeclarationJoinLinesHandler: respect precedence for both initializer and right-hand operand
Fixes IDEA-195416 Join lines over arithmetic operations should preserve order
Also StreamApiMigrationInspection#getOperationSign moved to TypeConversionUtil#getBinaryOperationText and reused
2018-07-12 11:26:49 +07:00

5 lines
60 B
Java

class Foo {
{
int a = (1 + 2) * (2 + 3);
}
}