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

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 // { dg-do compile }
2
3 // Avoid -pedantic-error default
4 // { dg-options "" }
5
6 // PR 19989 - dependent array of size 0 fails to compile.
7
8 template<int I> struct A
9 {
10 static const int zero = 0;
11 };
12
13 template<int N> struct B
14 {
15 int x[A<N>::zero];
16 };
17
18 B<0> b;