https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123467
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |error-recovery,
| |ice-on-invalid-code,
| |needs-bisection
Summary|ICE in force_constant_size |[16 Regression] ICE in
| |force_constant_size with
| |VLA initialized in function
| |type definition
Known to fail| |16.0
Target Milestone|--- |16.0
Known to work| |15.2.0
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced:
```
int x;
void g(int b[(int[x]){1}[0]]) {
}
```