/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / var-templ49.C
blob7ac574420f428405e6c3c4ecd74db62d9dc77cd7
1 // PR c++/66786
2 // { dg-do compile { target c++14 } }
4 int f (int, bool);
6 template <typename>
7 auto list = [](auto... xs) { return [=](auto f, auto... ys) { return f(xs..., ys...); }; };
9 const int &a = list<int>(0)(f, true);