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

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced from the dup bug:
```
struct a{int i;};
template<int=0>
int f()
{
  auto [... j] = a{};
  return j...[0];
}
int x = f();
```

Reply via email to