OSDN Git Service

* rtl.h (insns_safe_to_move_p): New function.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.eh / tmpl1.C
1 template <class T>
2 void f() throw (T)
3 {
4   throw 7;
5 }
6
7
8 int main()
9 {
10   try {
11     f<int>();
12   } catch (...) {
13     return 0;
14   }
15 }