blob: 49a7d1e68fdd8dc67c2cb061148042e444fc027a [file] [log] [blame]
// Build don't link:
void athrow(const int & e) throw(int)
{
throw e;
}
int main(void)
{
athrow(int());
return 0;
}