OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.eh / tmpl3.C
1 // { dg-do assemble  }
2
3 // Posted by Trevor Taylor <ttaylor@powerup.com.au>
4
5 template<class T> struct A {
6     void X() throw(T);
7 };
8
9 template<class T>
10 inline void A<T>::X() 
11 throw(T) { }