blob: 38d582bec5e9e76bcf1dab52da4e1c1db998e627 [file] [log] [blame]
// PR c++/101717
// { dg-do compile { target c++14 } }
struct x {
static void f() { }
void (*_)() = [] { [=](auto) { f(); }(0); };
};