Retro68/binutils/gold/testsuite/eh_test_b.cc

34 lines
306 B
C++
Raw Normal View History

2017-04-10 11:32:00 +00:00
#include <iostream>
#include <cstdlib>
void
foo()
{
}
template<typename C>
void
bar(C*)
{
}
template
void
bar<int>(int*);
int
main()
{
try
{
throw(1);
}
catch(int)
{
std::cout << "caught" << std::endl;
exit(0);
}
std::cout << "failed" << std::endl;
exit(1);
}