blob: 89ecf2dc07493d5c720460f7be7ae75849577c1f [file] [log] [blame]
// Build don't link:
struct X {
X();
};
typedef void (X::*mfp)();
struct Y {
Y();
mfp memfp;
};
void f()
{
Y *y1, *y2 ;
*y1 = *y2; // gets bogus error - failed to synthesize op=
}