URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [const5.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/49176
// { dg-options -std=c++0x }
struct A { static int a(); };
template<int>
struct B { static int const b; };
int f() { return B<0>::b; }
template<int I>
int const B<I>::b=A::a();
Go to most recent revision | Compare with Previous | Blame | View Log