URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [noexcept12.C] - Rev 693
Compare with Previous | Blame | View Log
// Test that we handle merging with deferred noexcept.
// { dg-options -std=c++0x }
template <class U>
struct O
{
template <class T>
void f() noexcept(noexcept(T()));
};
template<> template<> void O<int>::f<int>() noexcept { }