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;