blob: 1ca8a783206149359e721aff346a5d1a3e79d3f3 [file] [log] [blame]
// 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);
}