[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / static21-a.cc
blob9489ae7d0b84b89b76d713c2e88772579c062a15
1 template<int dummy>
2 struct X
4 static const int n_primes = 256;
5 static const unsigned long primes[n_primes + 1];
6 };
8 template<int dummy>
9 const int X<dummy>::n_primes;
11 template<int dummy>
12 const unsigned long X<dummy>::primes[n_primes + 1] =
13 { 0 };
16 const unsigned long *f1(void){return &X<0>::primes[0];}
17 int main(){}