blob: 6b8f2f3c4155e844e53e49ac5b7f3dd25e96f7dd [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice9254a.d(15): Error: Using the result of a comma expression is not allowed
fail_compilation/ice9254a.d(15): Error: Using the result of a comma expression is not allowed
fail_compilation/ice9254a.d(15): Error: Using the result of a comma expression is not allowed
fail_compilation/ice9254a.d(15): Error: Using the result of a comma expression is not allowed
fail_compilation/ice9254a.d(15): Error: Using the result of a comma expression is not allowed
fail_compilation/ice9254a.d(15): Error: invalid `foreach` aggregate `false`
---
*/
void main()
{
foreach (divisor; !(2, 3, 4, 8, 7, 9))
{
// ice in ForeachRangeStatement::blockExit()
foreach (v; 0..uint.max) {}
// ice in WhileStatement::blockExit()
while (1) {}
}
}