diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/synth7.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.jason/synth7.C | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/synth7.C b/gcc/testsuite/g++.old-deja/g++.jason/synth7.C new file mode 100644 index 000000000..33beb911f --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.jason/synth7.C @@ -0,0 +1,12 @@ +// { 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); +} |