ref: 4957aa7a96d1a90272f7efd1344800d476ab9aac
dir: /cc1/tests/test011.c/
/* name: TEST011 description: Basic test for goto output: test011.c:14: warning: 'foo' defined but not used test011.c:14: warning: 'start' defined but not used F1 I E G2 F1 main { \ L3 j L4 r #I1 L5 r #I0 L4 L6 j L5 r #I1 } */ #line 1 int main() { start: goto next; return 1; success: return 0; next: foo: goto success; return 1; }