This commit is contained in:
Hackerpilot 2015-04-27 15:46:19 -07:00
parent bb3ee5df18
commit 74400b677c
8 changed files with 13 additions and 2 deletions

View File

@ -220,7 +220,7 @@ private:
{
writeToken();
if (index < tokens.length && (currentIs(tok!"identifier")
|| isBasicType(current.type) || currentIs(tok!"@")))
|| isBasicType(current.type) || currentIs(tok!"@") || currentIs(tok!"if")))
{
write(" ");
}
@ -1385,7 +1385,7 @@ const pure @safe @nogc:
auto t = tokens[i + index].type;
return t == tok!"for" || t == tok!"foreach" || t == tok!"foreach_reverse"
|| t == tok!"while" || t == tok!"if" || t == tok!"out"
|| t == tok!"catch" || t == tok!"with";
|| t == tok!"catch" || t == tok!"with" || t == tok!"synchronized";
}
}

View File

@ -0,0 +1,4 @@
class Bar(A) : Foo if (isFloating!A)
{
}

4
tests/issue0142.d Normal file
View File

@ -0,0 +1,4 @@
class Bar(A) : Foo if (isFloating!A)
{
}

View File

@ -0,0 +1,3 @@
class Bar(A) : Foo if (isFloating!A) {
}