aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/nsdmi-eh1.C
blob: edcf5887db14f1c67f405540e923d1b0c67152a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Core issue 1351
// { dg-do run { xfail *-*-* } }
// { 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 (...) { }
}