http://d.puremagic.com/issues/show_bug.cgi?id=11200
Summary: RDMD: Cannot have "std" submodules in a project
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: major
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Andrej Mitrovic <[email protected]> 2013-10-08
12:14:54 PDT ---
Modules:
foo/bar.d:
-----
module foo.bar;
import foo.std.exception;
import std.range;
-----
foo/std/exception.d:
-----
module foo.std.exception;
-----
Compiling from path where the "foo" folder is located in:
$ dmd -main foo\bar.d
>
$ rdmd -main foo\bar.d
C:\dmd-git\dmd2\windows\bin\..\..\src\phobos\std\conv.d(26): Error: module
foo.std.exception from file foo\std\exception.d must be imported as module
'foo.std.exception'
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------