* g++.dg/init/dtor1.C: Make it tougher.

From-SVN: r53061
This commit is contained in:
Mark Mitchell 2002-05-02 20:05:15 +00:00 committed by Mark Mitchell
parent ac293f9845
commit 5121c03ef7
2 changed files with 23 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-05-02 Mark Mitchell <mark@codesourcery.com>
* g++.dg/init/dtor1.C: Make it tougher.
2002-05-01 Mark Mitchell <mark@codesourcery.com>
* g++.dg/init/dtor1.C: New test.

View File

@ -2,7 +2,7 @@
extern "C" void abort ();
int d = 2;
int d = 5;
struct B
{
@ -11,10 +11,26 @@ struct B
~B () { if (d-- != x) abort (); }
};
struct C1 : public B {
C1 (int i) : B (i) {}
};
struct C2 : public B {
C2 (int i) : B (i) {}
};
struct D : public B {
D (int i) : B (i) {}
};
struct E : public B {
E (int i) : B (i) {}
};
struct A
: public B
: public C1, C2, virtual public D, virtual public E
{
A () : B (0), x1(1), x2(2) {}
A () : D (0), E (1), C1 (2), C2 (3), x1(4), x2(5) {}
B x1;
B x2;
};