1 /* Test diagnostics for addresses of labels and computed gotos. Test
2 with -pedantic-errors. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-pedantic-errors" } */
10 void *p
= &&a
; /* { dg-error "taking the address of a label is non-standard" } */
11 goto *p
; /* { dg-error "ISO C forbids 'goto \\*expr;'" } */