summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh41.C
blob: 831d75dc4e7e277bc7766c6a600fdcf30e853e25 (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 sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }

int fail = 0;

struct A {
   A () { a = 'a'; b = 'b'; c = 'c'; }
   ~ A () {
      if ( a != 'a' ) fail = 1;
      if ( b != 'b' ) fail = 1;
      if ( c != 'c' ) fail = 1;
   }
   char a, b, c;
};

void some_init () { throw 1; }

struct C : A {
   C () { some_init (); }
};

int main () {
  try {
    C c;
  } catch (int i) {
    return 0;
  }
  return 1;
}