// { dg-do run { xfail sparc64-*-elf arm-*-pe } } // { dg-options "-fexceptions -w" } #include <typeinfo> struct B { virtual int f() { } }; struct D { virtual int f() { } }; int main() { B b; try { (void)dynamic_cast<D&>(b); } catch (std::bad_cast) { return 0; } return 1; }