diff options
Diffstat (limited to 'gcc/testsuite/g++.dg/template/fntry1.C')
-rw-r--r-- | gcc/testsuite/g++.dg/template/fntry1.C | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/template/fntry1.C b/gcc/testsuite/g++.dg/template/fntry1.C new file mode 100644 index 000000000..494be5ab0 --- /dev/null +++ b/gcc/testsuite/g++.dg/template/fntry1.C @@ -0,0 +1,43 @@ +// PR c++/26433 +// { dg-do link } + +int get_int() +{ + throw 1; + + return 0; +} + +template <class _T> class Test +{ +public: + Test() + try + : i(get_int()) + { + i++; + } + catch(...) + { + // Syntax error caused by undefined __FUNCTION__. + const char* ptr = __FUNCTION__; + } + +private: + int i; + _T t; +}; + +int main() +{ + try + { + Test<int> test; + } + catch(...) + { + return 1; + } + + return 0; +} |