0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-05 00:40:47 +00:00
quakeforge/tools/qfcc/test/for.r
2004-03-30 02:31:50 +00:00

22 lines
288 B
R

integer [5] y;
void () foo =
{
local integer x;
for (x = 0; x < 5; x++)
y[x] = 0;
for (; x < 5; x++)
y[x] = 0;
for (x = 0;; x++)
y[x] = 0;
for (;; x++)
y[x] = 0;
for (x = 0; x < 5;)
y[x] = 0;
for (; x < 5;)
y[x] = 0;
for (x = 0;;)
y[x] = 0;
for (;;)
y[x] = 0;
}