throw1.C   [plain text]


// Build don't link:

void athrow(const int & e) throw(int)
{
   throw e;
}

int main(void)
{
   athrow(int());
   return 0;
}