I\'ve got something like this:
namespace n1 { namespace n2 { class foo{} } }
You cannot write this, as n2 is inside of n1. If you want to access the n2 namespace, you can try typing using n2 = n1.n2 at the beginning of your other file.
n2
n1
using n2 = n1.n2