Merge pull request #175 from qznc/fix174

enum can also be used in is() expressions
This commit is contained in:
Brian Schott 2015-08-21 13:08:06 -07:00
commit 46669f8073
4 changed files with 24 additions and 6 deletions

View File

@ -794,12 +794,16 @@ private:
write(" "); write(" ");
break; break;
case tok!"enum": case tok!"enum":
if (peekBackIs(tok!"identifier")) if (peekIs(tok!")") || peekIs(tok!"==")) {
write(" "); writeToken();
indents.push(tok!"enum"); } else {
writeToken(); if (peekBackIs(tok!"identifier"))
if (!currentIs(tok!":")) write(" ");
write(" "); indents.push(tok!"enum");
writeToken();
if (!currentIs(tok!":"))
write(" ");
}
break; break;
default: default:
if (peekBackIs(tok!"identifier")) if (peekBackIs(tok!"identifier"))

View File

@ -0,0 +1,5 @@
void merge()
{
static if (is(T == enum))
*thisN = x;
}

5
tests/issue0174.d Normal file
View File

@ -0,0 +1,5 @@
void merge()
{
static if (is(T == enum))
*thisN = x;
}

View File

@ -0,0 +1,4 @@
void merge() {
static if (is(T == enum))
*thisN = x;
}