This commit is contained in:
Hackerpilot 2015-03-05 19:01:52 -08:00
parent cd5f5f644b
commit 8f11f3291f
4 changed files with 7 additions and 3 deletions

View File

@ -283,11 +283,12 @@ private:
}
else if (current.type == tok!"switch")
formatSwitch();
else if (current.type == tok!"version" && peekIs(tok!"("))
else if ((current.type == tok!"version" || current.type == tok!"extern")
&& peekIs(tok!"("))
{
writeToken();
write(" ");
writeParens(false);
writeParens(true);
}
else if (currentIsBlockHeader())
{

2
tests/issue0039.d Normal file
View File

@ -0,0 +1,2 @@
version(AArch64)
int x = 10;

1
tests/issue0039.d.ref Normal file
View File

@ -0,0 +1 @@
version (AArch64) int x = 10;