OSDN Git Service

2009-07-17 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / label9.C
1 // PR c++/32121
2 // { dg-do compile }
3
4 int f (void)
5 {
6   while (1)
7     __label__ a;        // { dg-error "not at the beginning" }
8   for (;;)
9     __label__ b;        // { dg-error "not at the beginning" }
10 }