Fix #83
This commit is contained in:
parent
eac7579e7c
commit
ff6a8281fe
|
@ -345,8 +345,7 @@ private:
|
||||||
default:
|
default:
|
||||||
if (index + 1 < tokens.length)
|
if (index + 1 < tokens.length)
|
||||||
{
|
{
|
||||||
auto next = tokens[index + 1];
|
if (!peekIs(tok!"@") && peekIsOperator())
|
||||||
if (peekIsOperator())
|
|
||||||
writeToken();
|
writeToken();
|
||||||
else
|
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