aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/array8.C
blob: 9fd33a4aa7df795e57051f3ad2e607fd332bbf5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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];
};