Commit 439041b9 by Martin v. Löwis

New test case.

From-SVN: r21212
parent e00a24fa
// Build don't link:
namespace A{
void f();
}
namespace B{
using namespace A;
void f(int);
}
using namespace B;
void g()
{
::f(); // ERROR - A::f is not found
}
using namespace A;
void g1()
{
::f(); // ok, it is found now
}
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