summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/cleanup-dtor.C
blob: 58da646704ba0d221484d662709348ac9e277be3 (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
// Check that destructors are run after cleanup functions.
// { dg-do run }

extern "C" void abort ();

int i;

struct S {
  ~S() {
    if (i != 1)
      abort ();
    i = 2;
  }
};

void f(void *) {
  if (i != 0)
    abort ();
  i = 1;
}

int main () {
  {
    S s __attribute__((cleanup (f)));
  }
  if (i != 2)
    abort ();
}