This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/16610] constructor template binding different than plain function for same types
- From: "giovannibajo at libero dot it" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 19 Jul 2004 15:22:32 -0000
- Subject: [Bug c++/16610] constructor template binding different than plain function for same types
- References: <20040717210303.16610.igodard@pacbell.net>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From giovannibajo at libero dot it 2004-07-19 15:22 -------
For the same reason that makes this example well-formed:
------------------------------
void f(char);
template <class T> void f(T );
void foo() { f('a'); }
------------------------------
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16610