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

// Ensure reference handling works.

#include <typeinfo>

struct B {
  virtual f() { }
} ob;

struct D : public B {
  virtual f() { }
} od;

main() {
  B *b=&ob;
  try {
    void *vp = &dynamic_cast<D&>(*b);
    return 1;
  } catch (bad_cast) {
    return 0;
  }
  return 1;
}