public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/15410] New: error not flagged
@ 2004-05-13 12:22 igodard at pacbell dot net
  2004-05-13 12:23 ` [Bug c++/15410] " pinskia at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: igodard at pacbell dot net @ 2004-05-13 12:22 UTC (permalink / raw)
  To: gcc-bugs

The following code compiles without error despite the template signature mismatch between the template declaration and the friend declaration.

template<typename T, typename U>
struct      F;
class       W {
    template<int i>
    friend
    class F;
    int x;
    };

template<typename T, typename U>
struct  F {
    void Look(W& w) { w.x = 3; }
    };

int main() {
    W w;
    F<char, bool> f;
    f.Look(w);
    return 0;
    }

-- 
           Summary: error not flagged
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: igodard at pacbell dot net
                CC: gcc-bugs at gcc dot gnu dot org


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


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

end of thread, other threads:[~2004-11-25 17:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-05-13 12:22 [Bug c++/15410] New: error not flagged igodard at pacbell dot net
2004-05-13 12:23 ` [Bug c++/15410] " pinskia at gcc dot gnu dot org
2004-08-16 17:08 ` [Bug c++/15410] error not flagged (friend) lerdsuwa at gcc dot gnu dot org
2004-10-17 14:09 ` [Bug c++/15410] Wrong template signature accepted in friend declaration lerdsuwa at gcc dot gnu dot org
2004-11-12 17:03 ` lerdsuwa at gcc dot gnu dot org
2004-11-25 17:05 ` lerdsuwa 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).