gnu_label_addr_undefined.c (121B)
1 /* Address taken of a label that is never defined. */ 2 int test_main(void) { 3 void* p = &&nope; 4 goto* p; 5 return 0; 6 }