URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [noexcept07.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::exit (0);
}
void f() noexcept;
void f() throw()
{
throw 1;
}
int main()
{
std::set_unexpected (my_unexpected);
f();
return 1;
}
Go to most recent revision | Compare with Previous | Blame | View Log