aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh36.C
blob: fbb639204a73818f0c7ef03d7a9df46c5c2ae03d (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**-*

#include <typeinfo>

class A {
  int space;
};
class B {
public:
  int data;
  B(int i) : data(i) {
  }
};
class D : public A, public B {
public:
  D(int i) : B(i) {
  }
} d(42);

main() {
  try {
    throw &d;
  } catch (B* b) {
    if (b->data == 42)
      return 0;
  }
  return 1;
}