1 2 3 4 5 6 7 8 9 10 11 12 13
int main() { start: goto next; return 1; success: return 0; next: foo: goto success; return 1; }