Commit 4cdea273 by Martin v. Löwis

New test case

From-SVN: r25561
parent 0580c9aa
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();
}
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