mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
20 lines
195 B
R
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;
|
|
};
|