OSDN Git Service

2010-02-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / static29.C
1 // PR c++/29570
2
3 template<int> struct A { static const int i; };
4
5 template<int N> const int A<N>::i = { A<N>::i };