https://gcc.gnu.org/bugzilla/show_bug.cgi?id=120275

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced with only one header:
```
#include <initializer_list>
int main()
{
    decltype(auto) values = {1, 2, 3, 4};
    values.size()
}
```

Reply via email to