blob: 5a6f47c1089a2cb469951785af4441b1e4292ec8 [file] [log] [blame]
// 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);
}