PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / aggr-init1.C
bloba7fe7c0441b5996bc2f8268cbfe5e8d1a1d73ef4
1 // PR c++/46903
3 struct A {};
4 struct B {
5         void *(*a)();
6 };
7 template <typename T> void *CreateA() { return 0; }
8 B b = {CreateA<A>};