This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c++/3784: ...
- From: Nathanael Nerode <neroden at twcny dot rr dot com>
- To: gcc-gnats at gcc dot gnu dot org, gcc-prs at gcc dot gnu dot org, holt at gholt dot net, nathan at gcc dot gnu dot org, gcc-bugs at gcc dot gnu dot org
- Date: Fri, 3 Jan 2003 06:29:53 -0500
- Subject: Re: c++/3784: ...
- Reply-to: neroden at twcny dot rr dot com
Note that a call such as
int main() {
X<2> x;
bar<2>(x);
}
or
int main() {
X<2> x;
foo<2>(x);
}
works as expected. So it's an issue with the binding of the name 'bar', but
not with the binding of the names 'bar<...>'. Dunno if this helps.