blob: 5a5687982595eb45ba42597989dadf3d85248105 [file] [log] [blame]
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }
#include <typeinfo>
class B {
public:
int data;
B(int i) : data(i) {
}
} b(42);
main() {
try {
throw &b;
} catch (const B* bptr) {
if (bptr->data == 42)
{
try {
throw &b;
} catch (void *bptr) {
if (((B*)bptr)->data == 42)
return 0;
}
}
}
return 1;
}