(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
var-templ48.C
// PR c++/66786
// { dg-do compile { target c++14 } }

template <typename... T> auto list = [](T... xs) { [=](auto f) { f(xs...); }; };
int main() { list<int>(0); }