This commit is contained in:
Hackerpilot 2015-03-04 17:16:39 -08:00
parent c2b22b9e2b
commit a37f4a967e
3 changed files with 7 additions and 2 deletions

View File

@ -353,7 +353,7 @@ private:
write(" "); write(" ");
break; break;
} }
goto case; goto binary;
case tok!"~": case tok!"~":
if (peekIs(tok!"this")) if (peekIs(tok!"this"))
{ {
@ -361,7 +361,7 @@ private:
break; break;
} }
else else
goto case; goto binary;
case tok!"&": case tok!"&":
case tok!"+": case tok!"+":
case tok!"-": case tok!"-":

1
tests/issue0024.d Normal file
View File

@ -0,0 +1 @@
complex_t opMul_r(real x){return complex_t(x)*this;}

4
tests/issue0024.d.ref Normal file
View File

@ -0,0 +1,4 @@
complex_t opMul_r(real x)
{
return complex_t(x) * this;
}