// PR c++/62241 // { dg-do compile { target c++14 } } template struct function { template function(Functor) { } }; int main () { int bar = 0; function { [foo = bar] { } }; }