Boolean-condition || void-expression should be a valid D expression, but the following code fails to compile.
----
bool cond(bool b) { return b; }
void main()
{
cond(true) || assert(0);
cond(false) || assert(0);
true || assert(0); // Error: integral constant must be scalar type, not void
false || assert(0);
}