quakeforge/tools/qfcc/test/old/for.r
Bill Currie 49ca09a64f Clean up qfcc's test directory.
I don't remember what half these tests were for :/
2012-11-22 21:58:52 +09: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;
}