blob: 3bddb3ce1e4ced43992d6221505da303d7021e99 (
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 int f() { }
};
struct D {
virtual int f() { }
};
main() {
B b;
try {
(void)dynamic_cast<D&>(b);
} catch (std::bad_cast) {
return 0;
}
return 1;
}
|