blob: 9874131a44dfd4a903ab441538ce0f80437e2df0 [file] [log] [blame]
struct A
{
A();
A(A&); // ERROR - referenced below
};
int
main ()
{
try
{
throw A(); // ERROR - can't copy
}
catch (...) { }
}