strlen: Fix up !si->full_string_p handling in count_nonzero_bytes_addr [PR115152]
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / init5.C
blob7bb263a93c0388aaf9e44ab1ec10707c6979f648
1 // { dg-do run { xfail { ! cxa_atexit } } }
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() {}