diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/synth2.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.jason/synth2.C | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/synth2.C b/gcc/testsuite/g++.old-deja/g++.jason/synth2.C new file mode 100644 index 000000000..5e420913f --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.jason/synth2.C @@ -0,0 +1,8 @@ +// { dg-do assemble } +// PRMS Id: 4623 +// Bug: g++ tries and fails to synthesize a copy constructor for D. + +class A { }; +class B: public virtual A { }; +class C: public A { }; +class D: public B, public C { }; // { dg-bogus "" } bad synthesis |