view gcc/testsuite/g++.dg/cpp0x/nsdmi-eh1.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// Core issue 1351
// { dg-do run }
// { dg-require-effective-target c++11 }

bool fail;
struct A
{
  int i = fail ? throw "noooooooo" : 42;
};

int main()
{
  A a1;
  if (a1.i != 42) return 1;
  fail = true;
  try { A a2; }
  catch (...) { }
}