aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/compat/eh/template1_y.C
blob: 19425375c92f2cb6115d97eae0338fecda2a0e84 (plain)
1
2
3
4
5
6
7
8
#include "template1.h"

template<class T> void C<T>::f (void) throw (E)
{
  throw E();
}

template class C<int>;