summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/label-decl-4.c
blob: 5661e019d1e6cffed4d180c9314d70780db340bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Test diagnostics for duplicate label declarations.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "" } */

void
f (void)
{
  __label__ a, b, a; /* { dg-error "duplicate label declaration 'a'" } */
  /* { dg-message "note: previous declaration of 'a' was here" "previous" { target *-*-* } .-1 } */
  __label__ c; /* { dg-message "note: previous declaration of 'c' was here" } */
  __label__ c; /* { dg-error "duplicate label declaration 'c'" } */
  return;
}