OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.eh / throw1.C
1 // { dg-do assemble  }
2
3 void athrow(const int & e) throw(int)
4 {
5    throw e;
6 }
7
8 int main(void)
9 {
10    athrow(int());
11    return 0;
12 }