rt_gccstream/gcc/testsuite/g++.dg/eh/throw2.C

9 lines
75 B
C

// PR c++/16851
struct A { A(int); };
void f(int t)
{
throw (3,A(t));
}