summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/array2.C
blob: 2d645ca94b6e6ba7fed6f2d3897bf918b5517da5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// { dg-do compile }

// Avoid -pedantic-error default
// { dg-options "" }
 
// PR 19989 - dependent array of size 0 fails to compile.

template<int I> struct A
{
  static const int zero = 0;
};

template<int N> struct B
{
  int x[A<N>::zero];
};

B<0> b;