1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
// PR c++/79180 // { dg-do run { target c++11 } } void foo (int a) { if (a != 127) __builtin_abort (); } template <typename... Args> void bar (Args &&... args) { [&]() { [&]() { foo (args...); } (); } (); } int main () { int x = 127; bar (x); }