PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / label-decl-4.c
blob5661e019d1e6cffed4d180c9314d70780db340bb
1 /* Test diagnostics for duplicate label declarations. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
6 void
7 f (void)
9 __label__ a, b, a; /* { dg-error "duplicate label declaration 'a'" } */
10 /* { dg-message "note: previous declaration of 'a' was here" "previous" { target *-*-* } .-1 } */
11 __label__ c; /* { dg-message "note: previous declaration of 'c' was here" } */
12 __label__ c; /* { dg-error "duplicate label declaration 'c'" } */
13 return;