This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/13659] [3.4 Regression] error: no matching function for call to
- From: "giovannibajo at libero dot it" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 12 Jan 2004 17:41:51 -0000
- Subject: [Bug c++/13659] [3.4 Regression] error: no matching function for call to
- References: <20040112164741.13659.larsbj@gullik.net>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From giovannibajo at libero dot it 2004-01-12 17:41 -------
This testcase proposed by Alexandre Oliva:
--------------------------
namespace foo1 {
template <class T> void f(T);
}
namespace foo2 {
template <class T> void f(T, T);
}
namespace foo {
using namespace foo1;
using namespace foo2;
}
using foo::f;
int main() {
f(1);
f(1, 1);
}
--------------------------
shows the lookup regression without strong using.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13659