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