2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / compat / init / array5_y.C
blob64b295ed56d0b315e80225fb319ccf230b0279ad
1 int count;
2 int num;
4 struct A
6   A();
7   ~A();
8 };
10 A::A()
12   if (count == num)
13     throw "";
14   count++;
17 A::~A()
19   count--;