OSDN Git Service

PR c++/16851
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / eh / throw2.C
1 // PR c++/16851
2
3 struct A { A(int); };
4
5 void f()
6 {
7  throw (3,A(t));
8 }