aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh44.C
blob: e612aeb793bf0d38abf630c3234347a6a6a6967a (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
29
30
31
32
33
34
35
36
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
// prms-id: 9159

static unsigned int iCounter = 0;
static unsigned int iMax;
int fail = 0;

class ca {
public:
  ca(int) {
    if (iCounter++ == iMax)
      throw (const char*)"iCounter";
  }
  virtual ~ca() {
  }
};

class cc {
public:
  cc(const ca &rca1, const ca &rca2) {
  }
  virtual ~cc() {
    fail = 1;
  }
};


int main(int argc, char **argv) {
  iMax = 1;
  try {
    cc sc(ca(1), ca(1));
  } catch (const char *pMsg) {
  }
  return fail;
}