// PR c++/79180 // { dg-do run { target c++11 } } void foo (int a) { if (a != 127) __builtin_abort (); } template void bar (Args &&... args) { [&]() { [&]() { foo (args...); } (); } (); } int main () { int x = 127; bar (x); }