This commit is contained in:
Hackerpilot 2015-03-09 22:08:12 -07:00
parent eac7579e7c
commit ff6a8281fe
3 changed files with 13 additions and 2 deletions

View File

@ -345,8 +345,7 @@ private:
default:
if (index + 1 < tokens.length)
{
auto next = tokens[index + 1];
if (peekIsOperator())
if (!peekIs(tok!"@") && peekIsOperator())
writeToken();
else
{

6
tests/issue0083.d Normal file
View File

@ -0,0 +1,6 @@
bool contains(T item)
{
asm pure nothrow@nogc
{
}
}

6
tests/issue0083.d.ref Normal file
View File

@ -0,0 +1,6 @@
bool contains(T item)
{
asm pure nothrow @nogc
{
}
}