blob: 33d222cbc04ee5b4ac8564284e825b87b0764d36 [file] [log] [blame]
// PR c++/14278
struct X {
X (int p);
};
struct A {
A(X);
};
void *p_fun;
A a(X ((*(int (*)(int, int)) p_fun)(0, 0)));