https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115865
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|[14/15 Regression] ICE with |[14/15 Regression] ICE with
|auto/std::initializer_list |auto/std::initializer_list
|variable definition and |variable definition with
|variable definition right |-fsanitize=address
|afterwards |
--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Actually this is enough to hit the ICE:
```
#include <initializer_list>
int main() {
std::initializer_list x = { 1, 2, 3 };
}
``