aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/init7.C
blob: 3b17da029e83999daa35f69be9fb1c36002c37d7 (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
27
28
// simplified from testcase in Windows Developer Journal,
// submitted by eyal.ben-david@aks.com

// The initialization of a static local variable must be retried if a
// previous try finished by throwing an exception [stmt.dcl]/4

struct foo {
  foo() { throw true; }
};

void bar() {
  static foo baz;
}

int main() {
  try {
    bar(); // must throw
  }
  catch (bool) {
    try {
      bar(); // must throw again!
    }
    catch (bool) {
      return 0;
    }
  }
  abort();
}