URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [template/] [array8.C] - Rev 12
Compare with Previous | Blame | View Log
// PR c++/18121
// We were trying to layout the array
// type but since the type/value of A<N>::i
// was not known at template declation type,
// we were crashing
template<int> struct A
{
static int const i = 1;
};
template<int N> struct B
{
typedef int (*p)[A<N>::i];
};