6_8_16_dangling_else.c (105B)
1 int test_main(void) { 2 int r = 0; 3 if (1) 4 if (0) 5 r = 1; 6 else 7 r = 42; 8 return r; 9 }