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