quakeforge/tools/qfcc/test/break.r

9 lines
76 B
R

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