This commit is contained in:
Hackerpilot 2019-02-20 11:25:31 -08:00
parent b34acc9f26
commit b4e97d3381
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;