Commit 8d9eb114 by Martin v. Löwis

New test case.

From-SVN: r21194
parent 34d1a71f
namespace A {
int i;
void f(){}
}
main ()
{
namespace B = A;
B::i=42;
B::f();
using namespace B;
f();
}
namespace B {}
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