view gcc/testsuite/g++.dg/ext/array2.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { 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;