1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
// 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:; } } }