aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/dyncast1.C
blob: fbcc489eaaf597ea0c2e1acef7b9f681db15e357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Special g++ Options: -fexceptions -w
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe

#include <typeinfo>

struct B {
  virtual f() { }
};

struct D {
  virtual f() { }
};

main() {
  B b;
  try {
    (void)dynamic_cast<D&>(b);
  } catch (std::bad_cast) {
    return 0;
  }
  return 1;
}