aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/static29.C
blob: a949c0cd85eadc1e7744862bb417f58bc38c2a2c (plain)
1
2
3
4
5
// PR c++/29570

template<int> struct A { static const int i; };

template<int N> const int A<N>::i = { A<N>::i };