blob: 1d4264b2983d3d982e97ca0489f741e2ff359c0d [file] [log] [blame]
// Testcase to make sure that synthesized methods are found when needed.
struct B { ~B() { } };
struct A { B b; };
main()
{
A a, b (a), c = A();
A& (A::*afp)(const A&) = &A::operator=;
(a.*afp) (b);
}