URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [noexcept06.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// Test that checking of a nothrow specification uses the one on the
// definition.
// { dg-options "-std=c++0x" }
// { dg-do run }
#include <exception>
#include <cstdlib>
void my_unexpected ()
{
std::abort ();
}
void my_terminate ()
{
std::exit (0);
}
void f() throw();
void f() noexcept
{
throw 1;
}
int main()
{
std::set_unexpected (my_unexpected);
std::set_terminate (my_terminate);
f();
return 1;
}
Go to most recent revision | Compare with Previous | Blame | View Log