This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/13659] [3.4 Regression] error: no matching function for call to


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]