rt_gccstream/gcc/testsuite/g++.old-deja/g++.eh/tmpl4.C

12 lines
167 B
C

// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T> void test(){
try {
}
catch(int x){
}
}
template void test<int>();