Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / init5.C
blob89b8cd3fc0ebafe919a45b537f47758497a7ab57
1 // { dg-do run { xfail { ! "powerpc*-*-linux*" } } }
2 // Objects must be destructed in decreasing cnt order
3 // Original test attributed to James Kanze <jkanze@otelo.ibmmail.com>
5 extern "C" void abort ();
7 static int cnt;
9 class A {
10   int myCnt;
11 public:
12   A() : myCnt(cnt++) {}
13   ~A() { if (--cnt != myCnt) abort(); }
16 void f() { static A a; /* a.myCnt == 1 */ }
18 class B {
19   int myCnt;
20 public:
21   B() : myCnt(cnt+1) { f(); ++cnt; }
22   ~B() { if (--cnt != myCnt) abort(); }
25 static A a1; // a1.myCnt == 0
26 static B b1; // b1.myCnt == 2
27 static A a2; // a2.myCnt == 3
29 int main() {}