Hello.
For now imports placed in global namespace, despite on named namespace where it's placed.
My preposition is include imports to appropriate namespaces, where it was placed.
Example:
namesace a
{
import void Foo() from "module";
import void Foo2() from "module";
}
namesace b
{
import void Foo() from "module"; // Error for now, but must be ok after changes
void Foo3()
{
Foo2(); // Ok for now, but must will be a::Foo2() after changes
}
}