aboutsummaryrefslogtreecommitdiff
path: root/gold/testsuite/eh_test_b.cc
blob: 50538df4b8c6c25ca5c563965ed8869c5e0dbc09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include <cstdlib>

void
foo()
{
}

int
main()
{
  try
    {
      throw(1);
    }
  catch(int)
    {
      std::cout << "caught" << std::endl;
      exit(0);
    }
  std::cout << "failed" << std::endl;
  exit(1);
}