0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-11 11:51:17 +00:00
quakeforge/tools/qfcc/test/old/break.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

20 lines
195 B
R

void () break = #0;
void () foo =
{
break ();
while (1) {
break;
}
};
float () bar =
{
local float break;
local float x;
break = 0;
break ++;
x = break;
break = x;
return break;
};