public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/37350]  New: Specialized template base class name not accepted
@ 2008-09-03 14:07 ian at airs dot com
  2008-09-03 14:51 ` [Bug c++/37350] " rguenth at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: ian at airs dot com @ 2008-09-03 14:07 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1327 bytes --]

C++98 [temp.local] says "Within the scope of a class template specialization or
partial specialization, when the name of the template is neither qualified nor
followed by <, it is equivalent to the name of the template followed by the
template-arguments enclosed in <>."  That does not work when a template
specialization is used as a base class.  In that case g++ does not accept the
unqualified base class name as a type.

This test case:

template <class T>
struct base {};

struct derived : base<int> {
  typedef base b;
  base* p;
};

gives these errors:

foo.cc:5: error: invalid use of template-name ‘base’ without an argument list
foo.cc:6: error: ISO C++ forbids declaration of ‘base’ with no type
foo.cc:6: error: expected ‘;’ before ‘*’ token

I believe this is an incorrect rejection of valid C++ code.  At least, I can't
find anything in the C++ standard which says that this code is invalid.


-- 
           Summary: Specialized template base class name not accepted
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Keywords: rejects-valid
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: ian at airs dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37350


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-12-23 23:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-09-03 14:07 [Bug c++/37350] New: Specialized template base class name not accepted ian at airs dot com
2008-09-03 14:51 ` [Bug c++/37350] " rguenth at gcc dot gnu dot org
2008-09-03 14:53 ` rguenth at gcc dot gnu dot org
2008-09-04  3:39 ` ian at airs dot com
2008-09-04  4:00 ` pinskia at gcc dot gnu dot org
2009-12-23 23:31 ` redi at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).