quakeforge/tools/qfcc/test/break.r

10 lines
76 B
R
Raw Normal View History

void () break = #0;
void () foo =
{
break ();
while (1) {
break;
}
};