view gcc/testsuite/g++.old-deja/g++.mike/eh40.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
line wrap: on
line source

// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }

int fail = 1;
class B {
public:
  B() { throw 1; }
};
class D : public B {
public:
  D() try : B() {
    fail = 1;
  } catch (char c) {
    fail = 1;
    throw;
  } catch (...) {
    fail = 0;
    throw;
  }
};

main() {
  try {
    D d;
    fail = 1;
  } catch (...) {
  }
  return fail;
}