blob: 7bb263a93c0388aaf9e44ab1ec10707c6979f648 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// { dg-do run { xfail { ! cxa_atexit } } }
// Objects must be destructed in decreasing cnt order
// Original test attributed to James Kanze <jkanze@otelo.ibmmail.com>
extern "C" void abort ();
static int cnt;
class A {
int myCnt;
public:
A() : myCnt(cnt++) {}
~A() { if (--cnt != myCnt) abort(); }
};
void f() { static A a; /* a.myCnt == 1 */ }
class B {
int myCnt;
public:
B() : myCnt(cnt+1) { f(); ++cnt; }
~B() { if (--cnt != myCnt) abort(); }
};
static A a1; // a1.myCnt == 0
static B b1; // b1.myCnt == 2
static A a2; // a2.myCnt == 3
int main() {}
|