6_8_goto_into_vla_scope.c (110B)
1 int test_main(void) { 2 int n = 4; 3 goto inside; 4 { 5 int a[n]; 6 inside: 7 a[0] = 0; 8 } 9 return 0; 10 }