Merge pull request #440 from kotet/issue-0433

Fix #433
merged-on-behalf-of: Basile-z <Basile-z@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2019-05-13 08:57:58 +02:00 committed by GitHub
commit 999c044020
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 23 additions and 0 deletions

View File

@ -448,6 +448,8 @@ private:
write(" ");
else if (prevTokenEndLine == currTokenLine || (t == tok!")" && peekIs(tok!"{")))
write(" ");
else if (t == tok!"else")
write(" ");
else if (canAddNewline || (peekIs(tok!"{") && t == tok!"}"))
newline();
}

View File

@ -0,0 +1,7 @@
int abs(int x)
{
if (x < 0) // x negative, must negate
return -x;
else // x already non-negative, just return it
return x;
}

8
tests/issue0433.d Normal file
View File

@ -0,0 +1,8 @@
int abs(int x) {
if (x < 0)
// x negative, must negate
return -x;
else
// x already non-negative, just return it
return x;
}

View File

@ -0,0 +1,6 @@
int abs(int x) {
if (x < 0) // x negative, must negate
return -x;
else // x already non-negative, just return it
return x;
}