diff options
author | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
---|---|---|
committer | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
commit | 554fd8c5195424bdbcabf5de30fdc183aba391bd (patch) | |
tree | 976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/g++.old-deja/g++.mike/p4736c.C | |
download | cbb-gcc-4.6.4-upstream.tar.bz2 cbb-gcc-4.6.4-upstream.tar.xz |
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig;
imported gcc-4.6.4 source tree from verified upstream tarball.
downloading a git-generated archive based on the 'upstream' tag
should provide you with a source tree that is binary identical
to the one extracted from the above tarball.
if you have obtained the source via the command 'git clone',
however, do note that line-endings of files in your working
directory might differ from line-endings of the respective
files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.mike/p4736c.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.mike/p4736c.C | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/p4736c.C b/gcc/testsuite/g++.old-deja/g++.mike/p4736c.C new file mode 100644 index 000000000..d260b3afe --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.mike/p4736c.C @@ -0,0 +1,63 @@ +// { dg-do run } +// prms-id: 4736 + +int did_fail; + +class Rep { +public: + virtual ~Rep() { } +}; + +class Rep_1 : public Rep { +}; + +class VBaseMain { +public: + virtual ~VBaseMain() { } +}; + +class OtherVBase { +public: + virtual ~OtherVBase() { } +}; + +class Rep_2 : public Rep { +}; + +class DVBase : public VBaseMain, public Rep_2, public OtherVBase { +public: + virtual ~DVBase() { } +}; + +class Main : public Rep_1, virtual public DVBase { +public: + virtual ~Main() { did_fail = 0; } +}; + +int main() { + Main* m; + did_fail = 1; + delete new Main; + if (did_fail) + return 1; + did_fail = 1; + delete (Rep*)(Rep_1*)new Main; + if (did_fail) + return 2; + did_fail = 1; + delete (DVBase*)new Main; + if (did_fail) + return 3; + did_fail = 1; + delete (VBaseMain*)(DVBase*)new Main; + if (did_fail) + return 4; + did_fail = 1; + delete (Rep*)(Rep_2*)(DVBase*)new Main; + if (did_fail) + return 5; + did_fail = 1; + delete (OtherVBase*)(DVBase*)new Main; + if (did_fail) + return 6; +} |