Fix #117
This commit is contained in:
parent
92ee9f13a8
commit
cf32df2acb
|
@ -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(" ");
|
||||
}
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
struct A
|
||||
{
|
||||
int i; // Comment
|
||||
~this()
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
struct A
|
||||
{
|
||||
int i; // Comment
|
||||
~this() {}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
struct A {
|
||||
int i; // Comment
|
||||
~this() {
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue