1 /* { dg-do compile } */ 2 /* { dg-require-effective-target label_values } */ 3 4 int test(int foo)5 test (int foo) 6 { 7 static void *dummy[] = { &&a, &&b }; 8 goto *((char *) &&b - 2 * (foo < 0)); 9 a: 10 b: 11 return 0; 12 } 13