2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.eh / tmpl3.C
blob0ddf63c98be28cf860511b34690ba88146ede9e9
1 // { dg-do assemble  }
3 // Posted by Trevor Taylor <ttaylor@powerup.com.au>
5 template<class T> struct A {
6     void X() throw(T);
7 };
9 template<class T>
10 inline void A<T>::X() 
11 throw(T) { }