(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
compat/
eh/
template1_y.C
#include "template1.h"

template<class T> void C<T>::f (void)
#if __cplusplus < 201103L
throw (E)
#endif
{
  throw E();
}

template class C<int>;