This commit is contained in:
Hackerpilot 2015-03-07 14:00:36 -08:00
parent 21515ef614
commit 2fa90ff3ba
3 changed files with 32 additions and 0 deletions

View File

@ -382,6 +382,11 @@ private:
case tok!"~":
if (peekIs(tok!"this"))
{
if (!(index == 0 || peekBackIs(tok!"{") || peekBackIs(tok!"}")
|| peekBackIs(tok!";")))
{
write(" ");
}
writeToken();
break;
}

12
tests/issue0057.d Normal file
View File

@ -0,0 +1,12 @@
~this()
{
}
extern(C++)~this()
{ global.gag = oldgag;
}
struct S
{public~this()
{
}}

15
tests/issue0057.d.ref Normal file
View File

@ -0,0 +1,15 @@
~this()
{
}
extern (C++) ~this()
{
global.gag = oldgag;
}
struct S
{
public ~this()
{
}
}