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