aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/aggr-init1.C
blob: a09c7a79264aa35cd220a7e6ccc3cc8911e9a112 (plain)
1
2
3
4
5
6
7
8
// PR c++/46903

struct A {};
struct B {
	void *(*a)();
};
template <typename T> void *CreateA() {}
B b = {CreateA<A>};