Fix #57
This commit is contained in:
parent
21515ef614
commit
2fa90ff3ba
|
@ -382,6 +382,11 @@ private:
|
||||||
case tok!"~":
|
case tok!"~":
|
||||||
if (peekIs(tok!"this"))
|
if (peekIs(tok!"this"))
|
||||||
{
|
{
|
||||||
|
if (!(index == 0 || peekBackIs(tok!"{") || peekBackIs(tok!"}")
|
||||||
|
|| peekBackIs(tok!";")))
|
||||||
|
{
|
||||||
|
write(" ");
|
||||||
|
}
|
||||||
writeToken();
|
writeToken();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
~this()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
extern(C++)~this()
|
||||||
|
{ global.gag = oldgag;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct S
|
||||||
|
{public~this()
|
||||||
|
{
|
||||||
|
}}
|
|
@ -0,0 +1,15 @@
|
||||||
|
~this()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
extern (C++) ~this()
|
||||||
|
{
|
||||||
|
global.gag = oldgag;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct S
|
||||||
|
{
|
||||||
|
public ~this()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue