blob: a09c7a79264aa35cd220a7e6ccc3cc8911e9a112 [file] [log] [blame]
// PR c++/46903
struct A {};
struct B {
void *(*a)();
};
template <typename T> void *CreateA() {}
B b = {CreateA<A>};