ref: 61425722b9d96bd86e4c7405379f8cc1250669f0 dir: /tests/0010-goto.c/
int main() { start: goto next; return 1; success: return 0; next: foo: goto success; return 1; }