1// { dg-do assemble  }
2
3void athrow(const int & e) throw(int)
4{
5   throw e;
6}
7
8int main(void)
9{
10   athrow(int());
11   return 0;
12}
13