URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [regress/] [template-const1.C] - Rev 693
Compare with Previous | Blame | View Log
// PR c++/47897
// { dg-options -std=c++0x }
template < typename T, T N >
struct S
{
static const T value = N;
typedef S< T, value + 1 > next;
};