https://issues.dlang.org/show_bug.cgi?id=10378
Ketmar Dark <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #17 from Ketmar Dark <[email protected]> --- this will pollute module scope with imported symbols. imagine that i have `mymodule.foo (float v)` function, and defined local `foo (int v)` function. with your "hidden global import" whenever i'll import "mymodule", it will add unexpected `foo` overload for the whole code. also, it breaks "module importing orger doesn't matter" rule. --
