Commit 421ec9a7 by Martin v. Löwis

New test case.

From-SVN: r21180
parent 2cc6777c
// Build don't link:
namespace M {
int i;
}
namespace N {
using namespace M;
}
using namespace N;
int j = i;
namespace O{
int k;
}
namespace N {
using namespace O;
}
int l = k;
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