aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/synth7.C
blob: 1d4264b2983d3d982e97ca0489f741e2ff359c0d (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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);
}