1// PR c++/29570
2
3template<int> struct A { static const int i; };
4
5template<int N> const int A<N>::i = { A<N>::i };
6