Thread overview
[Issue 11453] Compiling packages has a dependency on order of modules passed to the compiler.
Jul 30, 2014
Kenji Hara
July 30, 2014
https://issues.dlang.org/show_bug.cgi?id=11453

Kenji Hara <k.hara.pg@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic, pull

--- Comment #2 from Kenji Hara <k.hara.pg@gmail.com> ---
In 2.066 git-head, order dependent issue is resolved.

C:\Users\khara\d/
$ dmd -c test11136.d bar11136.d
DMD v2.066 DEBUG
bar11136.d(1): Error: package name 'test11136' conflicts with usage as a module
name in file test11136.d

---> Error is expected

C:\Users\khara\d/
$ dmd -c bar11136.d test11136.d
DMD v2.066 DEBUG
Error: module test11136 from file test11136.d conflicts with package name
test11136

---> also Error is expected, but no filename/line number is not good.

Fix diagnostic issue: https://github.com/D-Programming-Language/dmd/pull/3834

--
August 03, 2014
https://issues.dlang.org/show_bug.cgi?id=11453

--- Comment #3 from github-bugzilla@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/b94f7c2b7b1d969f4f22849d69fba04704981bdf
fix Issue 11453 - Compiling packages has a dependency on order of modules
passed to the compiler

https://github.com/D-Programming-Language/dmd/commit/9d6cef9ab255fa83dab53cbe12d7113a39a918ff Merge pull request #3834 from 9rnsr/fix11453

Issue 11453 - Compiling packages has a dependency on order of modules passed to the compiler

--
August 08, 2014
https://issues.dlang.org/show_bug.cgi?id=11453

--- Comment #4 from github-bugzilla@puremagic.com ---
Commit pushed to 2.066 at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/a3b6ed697085c8d92b09a2821d353c21cadc68cf Merge pull request #3834 from 9rnsr/fix11453

Issue 11453 - Compiling packages has a dependency on order of modules passed to the compiler

--
August 22, 2014
https://issues.dlang.org/show_bug.cgi?id=11453

--- Comment #5 from github-bugzilla@puremagic.com ---
Commit pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/a3b6ed697085c8d92b09a2821d353c21cadc68cf Merge pull request #3834 from 9rnsr/fix11453

--