summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/compat/eh/template1_x.C
blob: 5a18be789891c2c6fa6cc5fcb3ff3c7b75f33f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
extern "C" void exit (int);
extern "C" void abort (void);

#include "template1.h"

void template1_x ()
{
  int caught = 0;
  try
    {
      C<int> x;
      x.f();
    }
  catch (A)
    {
      ++caught;
    }
  if (caught != 1)
    abort ();
  exit (0);
}