blob: e5d234be3c317670022c27461542771ebe271eae [file] [log] [blame]
// { dg-do assemble }
void athrow(const int & e) throw(int)
{
throw e;
}
int main(void)
{
athrow(int());
return 0;
}