Fix #83
This commit is contained in:
parent
eac7579e7c
commit
ff6a8281fe
|
@ -345,8 +345,7 @@ private:
|
|||
default:
|
||||
if (index + 1 < tokens.length)
|
||||
{
|
||||
auto next = tokens[index + 1];
|
||||
if (peekIsOperator())
|
||||
if (!peekIs(tok!"@") && peekIsOperator())
|
||||
writeToken();
|
||||
else
|
||||
{
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
bool contains(T item)
|
||||
{
|
||||
asm pure nothrow@nogc
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
bool contains(T item)
|
||||
{
|
||||
asm pure nothrow @nogc
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue