blob: 4983535a58779bf6c687afe7b3e2403487e382de [file] [log] [blame]
// PR c++/14278
// { dg-options "" }
struct X {
X (int p);
};
struct A {
A(X);
};
void *p_fun;
A a(X ((*(int (*)(int, int)) p_fun)(0, 0)));