blob: 33beb911feb5cdd17c806ee8cc899e5cc4e8c8b0 [file] [log] [blame]
// { dg-do run }
// 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);
}