This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/35727] Nested class of specialized template class bug
- From: "philippe at fornux dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 28 Mar 2008 05:20:58 -0000
- Subject: [Bug c++/35727] Nested class of specialized template class bug
- References: <bug-35727-8054@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #2 from philippe at fornux dot com 2008-03-28 05:20 -------
** Then if I add the following:
template <>
struct A<void>::B
{
B()
{
cout << __PRETTY_FUNCTION__ << endl;
}
};
** I get:
nesttempspecbug.cpp:35: error: explicit specialization of non-template
`A<void>::B'
nesttempspecbug.cpp:35: error: explicit specialization of non-template
`A<void>::B'
--
philippe at fornux dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35727