https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68377
Adrian Wielgosik <adrian.wielgosik at gmail dot com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |adrian.wielgosik at gmail dot com --- Comment #2 from Adrian Wielgosik <adrian.wielgosik at gmail dot com> --- A slghtly simpler code that reproduces it: #include <iostream> template<class... Tx> int f(Tx... xs) { return ((xs+1) + ...); } int main() { std::cout << f(3,4,5) << "\n"; return 0; }