Commit d905ed80 by Alexandre Oliva Committed by Alexandre Oliva

re PR c++/13659 (error: no matching function for call to)

PR c++/13659
* g++.dg/lookup/strong-using-3.C: New.
* g++.dg/lookup/using-10.C: New.

From-SVN: r75924
parent ed5f054f
2004-01-15 Alexandre Oliva <aoliva@redhat.com>
PR c++/13659
* g++.dg/lookup/strong-using-3.C: New.
* g++.dg/lookup/using-10.C: New.
2004-01-15 Alexandre Oliva <aoliva@redhat.com>
PR c++/13594
* g++.dg/lookup/strong-using-2.C: New.
......
// PR c++/13659
// { dg-do compile }
namespace foo {
template <class T> void f(T, T);
}
namespace bar {
using namespace foo __attribute__((strong));
template <class T> void f(T);
}
int main() {
// Make sure both declarations are brought in.
using bar::f;
f(1);
f(1, 1);
}
// PR c++/13659
// { dg-do compile }
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;
}
// Make sure we bring in both declarations.
using foo::f;
int main() {
f(1);
f(1, 1);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment