Fix #142
This commit is contained in:
parent
bb3ee5df18
commit
74400b677c
|
@ -220,7 +220,7 @@ private:
|
||||||
{
|
{
|
||||||
writeToken();
|
writeToken();
|
||||||
if (index < tokens.length && (currentIs(tok!"identifier")
|
if (index < tokens.length && (currentIs(tok!"identifier")
|
||||||
|| isBasicType(current.type) || currentIs(tok!"@")))
|
|| isBasicType(current.type) || currentIs(tok!"@") || currentIs(tok!"if")))
|
||||||
{
|
{
|
||||||
write(" ");
|
write(" ");
|
||||||
}
|
}
|
||||||
|
@ -1385,7 +1385,7 @@ const pure @safe @nogc:
|
||||||
auto t = tokens[i + index].type;
|
auto t = tokens[i + index].type;
|
||||||
return t == tok!"for" || t == tok!"foreach" || t == tok!"foreach_reverse"
|
return t == tok!"for" || t == tok!"foreach" || t == tok!"foreach_reverse"
|
||||||
|| t == tok!"while" || t == tok!"if" || t == tok!"out"
|
|| t == tok!"while" || t == tok!"if" || t == tok!"out"
|
||||||
|| t == tok!"catch" || t == tok!"with";
|
|| t == tok!"catch" || t == tok!"with" || t == tok!"synchronized";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
class Bar(A) : Foo if (isFloating!A)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
class Bar(A) : Foo if (isFloating!A)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
class Bar(A) : Foo if (isFloating!A) {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue