URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [static_assert5.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/50837
// { dg-options "-std=c++0x" }
template<class T>
struct z
{
static constexpr bool test_constexpr()
{
return true;
}
static void test()
{
static_assert(test_constexpr(), "test1");
}
};
int main()
{
z<int>::test();
}
Go to most recent revision | Compare with Previous | Blame | View Log