OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [nsdmi-eh1.C] - Rev 707

Go to most recent revision | Compare with Previous | Blame | View Log

// Core issue 1351
// { dg-do run { xfail *-*-* } }
// { dg-options -std=c++0x }

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 (...) { }
}

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.