namespace N1
{
	struct Foo{};
}

namespace N2
{
	using namespace N1;
	Foo f;
}

namespace N2
{
	Foo f2;
}

int main()
{
	N2::f2;
}