1// PR c++/46903
2
3struct A {};
4struct B {
5	void *(*a)();
6};
7template <typename T> void *CreateA() {}
8B b = {CreateA<A>};
9