blob: c35780cc3c8faf6dc0edeb67a429ff7d9cc22814 [file] [log] [blame]
// { dg-do assemble }
struct X {
X();
};
typedef void (X::*mfp)();
struct Y {
Y();
mfp memfp;
};
void f()
{
Y *y1, *y2 ;
*y1 = *y2; // { dg-bogus "" } failed to synthesize op=
}