OSDN Git Service

PR c++/53549
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / eh / throw3.C
1 // PR c++/19312
2
3 struct A {};
4
5 void foo(A a)
6 {
7     throw (A)a;
8 }