URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [constexpr-sassert.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// Allow static_assert in constexpr constructors, too.
// { dg-options -std=c++0x }
template<typename T>
struct A
{
int i;
constexpr A(int i) : i(i)
{
static_assert(sizeof(T) == 1, "");
}
};
Go to most recent revision | Compare with Previous | Blame | View Log