quakeforge/tools/qfcc/test/shortcircuit.r

10 lines
98 B
R

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