quakeforge/tools/qfcc/test/old/shortcircuit.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

9 lines
98 B
R

void (integer x, integer y) foo =
{
if (x && y)
x += 2;
if (0)
x -= 1;
if (1)
x += 2;
};