aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh14.C
blob: e7c321397a203831f3be66961aed2c7da586a780 (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
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*

class arghh {
public:
  int n;
  arghh (int v) { n = v; }
};

int main () {
  try {
    throw arghh (11);
  }
  catch (arghh& a) {
    if (a.n != 11)
      return 1;
  }
  try {
    throw arghh (22);
  }
  catch (arghh& a) {
    if (a.n != 22)
      return 2;
  }
}