Fix #187
This commit is contained in:
parent
480e6fe973
commit
0389d798d7
|
@ -466,7 +466,7 @@ private:
|
||||||
write(" ");
|
write(" ");
|
||||||
}
|
}
|
||||||
else if (index < tokens.length && (currentIs(tok!"@") || isBasicType(tokens[index].type)
|
else if (index < tokens.length && (currentIs(tok!"@") || isBasicType(tokens[index].type)
|
||||||
|| currentIs(tok!"identifier")))
|
|| currentIs(tok!"identifier") || currentIs(tok!"if")))
|
||||||
write(" ");
|
write(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
void doStuff(T)() @safe if (isNumeric!T)
|
||||||
|
{
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
void doStuff(T)() @safe if (isNumeric!T)
|
||||||
|
{
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
void doStuff(T)() @safe if (isNumeric!T) {
|
||||||
|
}
|
Loading…
Reference in New Issue