// PR c++/82230 // { dg-do compile { target c++14 } } template struct c { template void f() { [](auto) { auto x = [] {}; }(0); } }; int main() { c{}.f(); }