Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.dg
/
torture
/
gdc66.d
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
);
}
}