https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123761
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Ever confirmed|0 |1
Last reconfirmed| |2026-01-22
Status|UNCONFIRMED |NEW
--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Note clang has slightly different semantics for the statement expression here:
```
<source>:7:50: warning: 'continue' is bound to current loop, GCC binds it to
the enclosing loop [-Wgcc-compat]
7 | for (int j = 0; j < ({ if (i == 1 && j == 1) continue; 4; }); ++j)
| ^
```