This commit is contained in:
Hackerpilot 2015-05-13 14:21:35 -07:00
parent 98686f7dd1
commit c194335be9
4 changed files with 20 additions and 1 deletions

View File

@ -709,7 +709,8 @@ private:
write(" "); write(" ");
break; break;
case tok!"is": case tok!"is":
if (!peekBackIsOneOf(false, tok!"!", tok!"(", tok!",", tok!"}", tok!"=") && !peekBackIsKeyword()) if (!peekBackIsOneOf(false, tok!"!", tok!"(", tok!",", tok!"}", tok!"=",
tok!"&&", tok!"||") && !peekBackIsKeyword())
write(" "); write(" ");
writeToken(); writeToken();
if (!currentIs(tok!"(") && !currentIs(tok!"{")) if (!currentIs(tok!"(") && !currentIs(tok!"{"))

View File

@ -0,0 +1,7 @@
class Foo(T) if (is(T : Bar) && is(T : Baz))
{
}
class Foo(T) if (is(T : Bar) || is(T : Baz))
{
}

6
tests/issue0154.d Normal file
View File

@ -0,0 +1,6 @@
class Foo(T) if (is(T : Bar) && is(T : Baz))
{}
class Foo(T) if (is(T : Bar) || is(T : Baz))
{}

View File

@ -0,0 +1,5 @@
class Foo(T) if (is(T : Bar) && is(T : Baz)) {
}
class Foo(T) if (is(T : Bar) || is(T : Baz)) {
}