blob: 3bddb3ce1e4ced43992d6221505da303d7021e99 [file] [log] [blame]
// 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;
}