aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/g++.dg/init/error2.C
blob: 43d24f13b732a5817fef8e92985b46968c832cec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PR c++/29727 */
/* { dg-do compile } */

template<int> struct A
{
  static int a[1];
};
template<int N> int A<N>::a[1] = { X:0 }; /* { dg-error "does not allow designated|was not declared|designated initializer for an array" } */

void foo()
{
  A<0>::a;
}