OSDN Git Service

* g++.dg/eh/weak1.C: Don't xfail hppa*64*-*-*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / eh / cast1.C
1 // PR c++/28523
2
3 class A {};
4 class B : public A {};
5
6 int main()
7 {
8   throw (A) B();
9   return 0;
10 }