mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00

Fix #286 - Weird indentation in else branch after wrapping expression merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
14 lines
338 B
D
14 lines
338 B
D
void foo()
|
|
{
|
|
if (true)
|
|
enum vectorizeable = aLongExpressionThatCausesWrapping()
|
|
&& aLongExpressionThatCausesWrapping();
|
|
else
|
|
enum vectorizeable = false;
|
|
|
|
if (true){
|
|
enum vectorizeable = aLongExpressionThatCausesWrapping()
|
|
&& aLongExpressionThatCausesWrapping();}
|
|
else
|
|
enum vectorizeable = false;
|
|
}
|