blob: ffb0cf149ce4b59b74f8035fcabf7a34135f52e1 [file] [log] [blame]
// PR c++/98326
// { dg-do compile { target c++14 } }
struct A {
A() = default;
A(const A&) {}
};
void (*fptr)(A) = [](auto){};