// PR c++/53137 // { dg-do compile { target c++11 } } struct A { template void f(); template void g() { [this]{ f(); }(); } void h() { g(); } };