1 // PR c++/16851
2 
3 struct A { A(int); };
4 
f(int t)5 void f(int t)
6 {
7  throw (3,A(t));
8 }
9