blob: a59bcf68e6f062ed84373290cadafbfd9fd40f33 [file] [log] [blame]
// https://bugzilla.gdcproject.org/show_bug.cgi?id=66
// { dg-do run }
// { dg-skip-if "needs gcc/config.d" { ! d_runtime } }
void main()
{
int pos = 0;
foreach(x; 0 .. 64)
{
++pos %= 4;
assert (pos != 4);
}
}