Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.jason / synth7.C
blob33beb911feb5cdd17c806ee8cc899e5cc4e8c8b0
1 // { dg-do run  }
2 // Testcase to make sure that synthesized methods are found when needed.
4 struct B { ~B() { } };
5 struct A { B b; };
7 int main()
9   A a, b (a), c = A();
10   A& (A::*afp)(const A&) = &A::operator=;
11   (a.*afp) (b);