New test case

From-SVN: r25561
This commit is contained in:
Martin v. Löwis 1999-03-03 11:23:47 +00:00
parent 0580c9aa4c
commit 4cdea27381

View File

@ -0,0 +1,23 @@
namespace A{
void foo(int){}
}
namespace B{
void foo(bool){}
}
void bar()
{
using B::foo;
using A::foo;
foo(true);
}
namespace Foo {
template<class N> void Hello(N) {}
}
int main() {
using Foo::Hello;
Hello(4);
bar();
}