blob: f9da8d7f4fdcf81d7cdab125919f29e9af6873d6 [file] [log] [blame]
// PR c++/16851
struct A { A(int); };
void f(int t)
{
throw (3,A(t));
}