public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c++/4205
@ 2003-01-03 12:16 Nathanael Nerode
  0 siblings, 0 replies; only message in thread
From: Nathanael Nerode @ 2003-01-03 12:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c++/4205; it has been noted by GNATS.

From: Nathanael Nerode <neroden@twcny.rr.com>
To: gcc-gnats@gcc.gnu.org, gcc-prs@gcc.gnu.org, Jens.Maurer@gmx.net,
   gcc-bugs@gcc.gnu.org, nobody@gcc.gnu.org
Cc:  
Subject: Re: c++/4205
Date: Fri, 3 Jan 2003 07:07:54 -0500

 This has a further perverse piece of behavior not noted before:
 the following code will, correctly, give an error!
 --
  template<typename F> void quirk(F f) {
    (*f) (1);
  }
 
 
 // void foo(int i, int j = 5){}
  void bar(int i, int j)    {}
 
  int main() {
 //   quirk(&foo);
    quirk(&bar);
  }
 --
 And so will this:
 --
 template<typename F> void quirk(F f) {
    (*f) (1);
  }
 
 
  void foo(int i, int j = 5){}
  void bar(int i, int j)    {}
 
  int main() {
    quirk(&bar);
    quirk(&foo);
  }
 --
 
 As long as "foo" is seen *first*, it 'immunizes' all subsequent functions.  
 But not otherwise.  This is really bad behavior.  
 It may possibly be related to c++/3784, which has similar "first one seen 
 controls everyone else" behavior, though I doubt it.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-01-03 12:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-01-03 12:16 c++/4205 Nathanael Nerode

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