Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / init7.C
blobe2267767b891acf0bd0c0dfee09f97f1f584aff1
1 /* PR c++/31517. This used to ICE.  */
2 /* { dg-do "compile" } */
4 template<typename> struct A
6   static const int i=0;
7 };
9 template<typename T> const int A<T>::i = 0=0; /* { dg-error "duplicate initialization" } */