6_8_10_goto_forward.c (73B)
1 int test_main(void) { 2 int r = 0; 3 goto L; 4 r = 99; 5 L: 6 return 42; 7 }