Automatic date update in version.in
[binutils-gdb.git] / gold / testsuite / eh_test_b.cc
blob3bf96e9d3cad0e6f41faa3a1afcd12df5cf072f7
1 #include <iostream>
2 #include <cstdlib>
4 void
5 foo()
9 template<typename C>
10 void
11 bar(C*)
15 template
16 void
17 bar<int>(int*);
19 int
20 main()
22 try
24 throw(1);
26 catch(int)
28 std::cout << "caught" << std::endl;
29 exit(0);
31 std::cout << "failed" << std::endl;
32 exit(1);