quakeforge/tools/qfcc/test/for.r

23 lines
288 B
R
Raw Normal View History

2004-03-30 02:31:50 +00:00
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;
}