Fix #30.
This commit is contained in:
parent
05c575f1e8
commit
fbdb908832
|
|
@ -349,7 +349,11 @@ private:
|
||||||
write(" ");
|
write(" ");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
else if (assumeSorted(astInformation.unaryLocations).equalRange(current.index).empty)
|
||||||
goto binary;
|
goto binary;
|
||||||
|
else
|
||||||
|
writeToken();
|
||||||
|
break;
|
||||||
case tok!"~":
|
case tok!"~":
|
||||||
if (peekIs(tok!"this"))
|
if (peekIs(tok!"this"))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
unittest {
|
||||||
|
tolower( * p); }
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
tolower(*p);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue