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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |c++-lambda, rejects-valid

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced to:
```
template<typename ...T>
void f(T...);

template <typename ...Ts>
void foo(Ts ...ts) {
  [ts...]() {
    return f([ts](){}...);
  };
}
``

Reply via email to