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

* [Bug c++/15410] error not flagged
  2004-05-13 12:22 [Bug c++/15410] New: error not flagged igodard at pacbell dot net
@ 2004-05-13 12:23 ` 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
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-05-13 12:23 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-05-13 01:00 -------
Confirmed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |accepts-invalid
      Known to fail|                            |2.95.3 3.3.3 3.4.0 3.5.0
                   |                            |3.0.4 3.2.3
   Last reconfirmed|0000-00-00 00:00:00         |2004-05-13 01:00:24
               date|                            |


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


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

* [Bug c++/15410] error not flagged (friend)
  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 ` 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
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: lerdsuwa at gcc dot gnu dot org @ 2004-08-16 17:08 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |lerdsuwa at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED


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


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

* [Bug c++/15410] Wrong template signature accepted in friend declaration
  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 ` 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
  4 siblings, 0 replies; 6+ messages in thread
From: lerdsuwa at gcc dot gnu dot org @ 2004-10-17 14:09 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From lerdsuwa at gcc dot gnu dot org  2004-10-17 14:09 -------
Patches submitted.  Both patches are required to fix this bug.

  http://gcc.gnu.org/ml/gcc-patches/2004-10/msg01321.html
  http://gcc.gnu.org/ml/gcc-patches/2004-10/msg01372.html


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch


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


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

* [Bug c++/15410] Wrong template signature accepted in friend declaration
  2004-05-13 12:22 [Bug c++/15410] New: error not flagged igodard at pacbell dot net
                   ` (2 preceding siblings ...)
  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
  4 siblings, 0 replies; 6+ messages in thread
From: lerdsuwa at gcc dot gnu dot org @ 2004-11-12 17:03 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From lerdsuwa at gcc dot gnu dot org  2004-11-12 17:03 -------
One more patch is required.  And libjava problem has to be fixed before this bug
is revisited.

-- 


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


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

* [Bug c++/15410] Wrong template signature accepted in friend declaration
  2004-05-13 12:22 [Bug c++/15410] New: error not flagged igodard at pacbell dot net
                   ` (3 preceding siblings ...)
  2004-11-12 17:03 ` lerdsuwa at gcc dot gnu dot org
@ 2004-11-25 17:05 ` lerdsuwa at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: lerdsuwa at gcc dot gnu dot org @ 2004-11-25 17:05 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From lerdsuwa at gcc dot gnu dot org  2004-11-25 17:05 -------
Fixed in the mainline.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.0


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).