blob: 1f6175df3a74226e933ca55837170255a35be287 [file] [log] [blame]
// PR c++/32121
// { dg-do compile }
int f (void)
{
__label__ a, b;
__label__ c;
a:;
b:;
c:;
{
__label__ d;
d:;
if (0)
{
__label__ e;
__label__ f;
f:;
e:;
}
}
}