Retro68/binutils/gold/testsuite/eh_test_b.cc
2017-04-10 13:32:00 +02:00

34 lines
306 B
C++

#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);
}