summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/compat/init/array5_y.C
blob: 64b295ed56d0b315e80225fb319ccf230b0279ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
int count;
int num;

struct A
{
  A();
  ~A();
};

A::A()
{
  if (count == num)
    throw "";
  count++;
}

A::~A()
{
  count--;
}