Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / ext / array2.C
blob2d645ca94b6e6ba7fed6f2d3897bf918b5517da5
1 // { dg-do compile }
3 // Avoid -pedantic-error default
4 // { dg-options "" }
5  
6 // PR 19989 - dependent array of size 0 fails to compile.
8 template<int I> struct A
10   static const int zero = 0;
13 template<int N> struct B
15   int x[A<N>::zero];
18 B<0> b;