OSDN Git Service

PR java/43504
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / label7.C
1 // PR c++/32121
2 // { dg-do compile }
3
4 int f (void)
5 {
6   a:;
7   __label__ a;  // { dg-error "not at the beginning" }
8   int b;
9   __label__ c;  // { dg-error "not at the beginning" }
10   a:;           // { dg-error "duplicate label" }
11   c:;
12 }