This commit is contained in:
Hackerpilot 2015-03-04 13:26:40 -08:00
parent 454019bf3c
commit 71fed69664
3 changed files with 19 additions and 0 deletions

View File

@ -347,6 +347,13 @@ private:
} }
goto case; goto case;
case tok!"~": case tok!"~":
if (peekIs(tok!"this"))
{
writeToken();
break;
}
else
goto case;
case tok!"&": case tok!"&":
case tok!"+": case tok!"+":
case tok!"-": case tok!"-":

6
tests/issue0022.d Normal file
View File

@ -0,0 +1,6 @@
struct X
{
~this()
{
}
}

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

@ -0,0 +1,6 @@
struct X
{
~this()
{
}
}