summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/static21.C
blob: 66b045087fa7738751acdd9f4ecab18b9c81f24e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PR c++/24389
// { dg-additional-sources "static21-a.cc" }
// { dg-do link }

template<int dummy>
struct X
{
  static const int n_primes = 256;
  static const unsigned long primes[n_primes + 1];
};

template<int dummy>
const int X<dummy>::n_primes;

template<int dummy>
const unsigned long X<dummy>::primes[n_primes + 1] =
  { 0 };

const unsigned long  *f(void){return &X<0>::primes[0];}