https://issues.dlang.org/show_bug.cgi?id=12758
Vladimir Panteleev <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |dlang-bugzilla@thecybershad | |ow.net Resolution|--- |WONTFIX --- Comment #8 from Vladimir Panteleev <[email protected]> --- (In reply to yebblies from comment #6) > I don't think the compiler should be guessing what you wanted the module to > be called. Indeed. It is by the same reasoning that the compiler will not do case-insensitive lookup (on case-sensitive filesystems). Not only is this less efficient (enumerating a directory can be much more inefficient than accessing a file by its file name), but it creates problems such as multiple file names mapping to the same module name (what if you have a-b.d and a_b.d in the same directory?). --
