Add a debug counter for late-combine
[official-gcc.git] / gcc / testsuite / g++.dg / compat / eh / template1.h
blobc807b4753b5061a98ce29d6337d9830986b78819
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()
15 #if __cplusplus < 201103L
16 throw(E)
17 #endif