New test case
From-SVN: r25561
This commit is contained in:
parent
0580c9aa4c
commit
4cdea27381
23
gcc/testsuite/g++.old-deja/g++.ns/using13.C
Normal file
23
gcc/testsuite/g++.old-deja/g++.ns/using13.C
Normal 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();
|
||||
}
|
Loading…
Reference in New Issue
Block a user