[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / static29.C
bloba949c0cd85eadc1e7744862bb417f58bc38c2a2c
1 // PR c++/29570
3 template<int> struct A { static const int i; };
5 template<int N> const int A<N>::i = { A<N>::i };