aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/label-decl-4.c
blob: 3cfe965fd5d78fe14612387bf8f04e82925f7463 (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 *-*-* } 9 } */
  __label__ c; /* { dg-message "note: previous declaration of 'c' was here" } */
  __label__ c; /* { dg-error "duplicate label declaration 'c'" } */
  return;
}