summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/array1.C
blob: 0ecba7778aa4f710afa0d2be40f96e09384f05ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
int i;

struct S {
  S (int) {
    ++i;
    if (i == 3)
      throw 3;
  };

  S () {}

  ~S() {
    --i;
  }
};

int main()
{
  try {
    S s[5] = { 0, 1, 2, 3, 4 };
  } catch (...) {
  }

  if (i != 1)
    return 1;
}