This commit is contained in:
Hackerpilot 2015-09-16 17:20:16 -07:00
parent 480e6fe973
commit 0389d798d7
4 changed files with 9 additions and 1 deletions

View File

@ -466,7 +466,7 @@ private:
write(" ");
}
else if (index < tokens.length && (currentIs(tok!"@") || isBasicType(tokens[index].type)
|| currentIs(tok!"identifier")))
|| currentIs(tok!"identifier") || currentIs(tok!"if")))
write(" ");
}

View File

@ -0,0 +1,3 @@
void doStuff(T)() @safe if (isNumeric!T)
{
}

3
tests/issue0187.d Normal file
View File

@ -0,0 +1,3 @@
void doStuff(T)() @safe if (isNumeric!T)
{
}

View File

@ -0,0 +1,2 @@
void doStuff(T)() @safe if (isNumeric!T) {
}