Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / fntry1.C
blob9a5d993bee0298d710b021e483545e79450d6ab0
1 // { dg-do run  }
2 // Bug: g++ silently ignores function-try-blocks in templates.
3 // Submitted by Jason Merrill <jason@cygnus.com>
5 template <class T> void f (T) try { throw 1; } catch (...) { }
7 int main ()
9   f (1);