https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24375
David Malcolm <dmalcolm at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed|2006-01-15 21:05:21 |2016-1-27 CC| |dmalcolm at gcc dot gnu.org --- Comment #3 from David Malcolm <dmalcolm at gcc dot gnu.org> --- Problem still present in trunk for gcc 6 (e.g. r232888), albeit it now with column numbers and ranges: foo.cc:8:21: error: redefinition of ‘const int foo<int>::u’ const int foo<int>::u; ^ foo.cc:4:36: note: ‘const int foo<int>::u’ previously defined here struct foo<int> { static const int u = 0; static int v; }; ^ foo.cc:12:15: error: redefinition of ‘int foo<int>::v’ int foo<int>::v; ^ foo.cc:10:5: note: ‘int foo<int>::v’ previously declared here int foo<int>::v; ^~~~~~~~