2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / compat / eh / template1.h
blob93999a11d49e5a49a265bf2a065ca4e0650ed5f3
1 class A {};
3 template <class T>
4 struct B
6 typedef A E;
7 };
9 template <class T>
10 struct C
12 typedef B<T> D;
13 typedef typename D::E E;
14 void f() throw(E);