URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [pr24780.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/24780
// { dg-do compile }
template<typename S=int>
struct Move {
Move();
static Move<S> const MOVES[2][2];
};
template<typename S>
Move<S> const Move<S>::MOVES[2][2]={};
typedef Move<int> const MoveClass;
void moves(int x, int y) {
&MoveClass::MOVES[x][y];
}
Go to most recent revision | Compare with Previous | Blame | View Log