This commit is contained in:
Hackerpilot 2015-03-18 16:22:04 -07:00
parent 92ee9f13a8
commit cf32df2acb
4 changed files with 19 additions and 2 deletions

View File

@ -746,8 +746,8 @@ private:
case tok!"~":
if (peekIs(tok!"this"))
{
if (!(index == 0 || peekBackIs(tok!"{") || peekBackIs(tok!"}")
|| peekBackIs(tok!";")))
if (!(index == 0 || peekBackIs(tok!"{", true) || peekBackIs(tok!"}", true)
|| peekBackIs(tok!";", true)))
{
write(" ");
}

View File

@ -0,0 +1,7 @@
struct A
{
int i; // Comment
~this()
{
}
}

5
tests/issue0117.d Normal file
View File

@ -0,0 +1,5 @@
struct A
{
int i; // Comment
~this() {}
}

View File

@ -0,0 +1,5 @@
struct A {
int i; // Comment
~this() {
}
}