public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/16582] New: Wrong diagnostic when using "&a[1]" as template argument
@ 2004-07-16  1:57 giovannibajo at libero dot it
  2004-07-16  3:36 ` [Bug c++/16582] " bangerth at dealii dot org
  2004-07-16  6:50 ` pinskia at gcc dot gnu dot org
  0 siblings, 2 replies; 3+ messages in thread
From: giovannibajo at libero dot it @ 2004-07-16  1:57 UTC (permalink / raw)
  To: gcc-bugs

Compiling the following code:

-----------------------------------------
template<class T, char* p> struct X {
  X();
  X(const char* q) { /* ... */ }
};

char p[] = "Vivisectionist";
X<int, p> x2; // OK
X<int, &p[0]> x3; // ERROR
-----------------------------------------

I get this error on mainline:

nontype1.cc: At global scope:
nontype1.cc:8: error: missing `>' to terminate the template argument list
nontype1.cc:8: error: template argument 2 is invalid
nontype1.cc:8: error: expected init-declarator before '>' token
nontype1.cc:8: error: expected `,' or `;' before '>' token

The message is totally bogus. The real problem is that a call to operator[] is 
not be allowed within a template argument.

This happens with both 3.4 and mainline. Not a regression though since older 
versions even incorrectly accepted the code (in fact, I fixed this very issue 
within the new parser).

-- 
           Summary: Wrong diagnostic when using "&a[1]" as template argument
           Product: gcc
           Version: 3.5.0
            Status: UNCONFIRMED
          Keywords: diagnostic
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: giovannibajo at libero dot it
                CC: gcc-bugs at gcc dot gnu dot org


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


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

end of thread, other threads:[~2004-07-16  6:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-07-16  1:57 [Bug c++/16582] New: Wrong diagnostic when using "&a[1]" as template argument giovannibajo at libero dot it
2004-07-16  3:36 ` [Bug c++/16582] " bangerth at dealii dot org
2004-07-16  6:50 ` pinskia 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).