aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh41.C
blob: 4127402d09e6d561fd3f90979ee80541ad156351 (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
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*

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;
};