Merge pull request #437 from dlang-community/issue-436

Fix #436
merged-on-behalf-of: Brian Schott <Hackerpilot@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2019-02-22 03:20:39 +01:00 committed by GitHub
commit 54a84bd927
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 0 deletions

View File

@ -232,6 +232,18 @@ private:
{
writeToken();
write(" ");
while (index < tokens.length)
{
if (currentIs(tok!"("))
formatLeftParenOrBracket();
else if (currentIs(tok!")"))
{
formatRightParen();
break;
}
else
writeToken();
}
}
else if (((isBlockHeader() || currentIs(tok!"version")) && peekIs(tok!"("))
|| (currentIs(tok!"debug") && peekIs(tok!"{")))

View File

@ -0,0 +1 @@
extern (Objective-C) int a;

1
tests/issue0436.d Normal file
View File

@ -0,0 +1 @@
extern (Objective-C) int a;

View File

@ -0,0 +1 @@
extern (Objective-C) int a;