[Issue 4563] [module system] Error messages for missing package or missing name

2018-05-18 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4563 Dmitry Olshansky changed: What|Removed |Added CC|

[Issue 4563] [module system] Error messages for missing package or missing name

2018-05-18 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4563 Dmitry Olshansky changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 4563] [module system] Error messages for missing package or missing name

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4563 Andrei Alexandrescu and...@erdani.com changed: What|Removed |Added Version|D1 D2 |D2 --

[Issue 4563] [module system] Error messages for missing package or missing name

2015-05-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4563 Vladimir Panteleev thecybersha...@gmail.com changed: What|Removed |Added CC|

[Issue 4563] [module system] Error messages for missing package or missing name

2012-10-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 --- Comment #7 from bearophile_h...@eml.cc 2012-10-24 05:09:04 PDT --- (In reply to comment #6) This is the only test-case left to fix in this Issue (the others seem to be fixed). This is the current situation: // Case#1

[Issue 4563] [module system] Error messages for missing package or missing name

2012-10-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 --- Comment #8 from Andrej Mitrovic andrej.mitrov...@gmail.com 2012-10-24 06:48:43 PDT --- (In reply to comment #7) test.d(1): Error: module bitmanips is in file 'std\bitmanips.d' which cannot be read The Case#1 probably needs a better

[Issue 4563] [module system] Error messages for missing package or missing name

2012-10-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 --- Comment #9 from bearophile_h...@eml.cc 2012-10-24 10:13:27 PDT --- (In reply to comment #8) However what if the module is not in any package? Example: import bitmanips; void main() { } = test.d(1): Error: module bitmanips is in file

[Issue 4563] [module system] Error messages for missing package or missing name

2012-10-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 --- Comment #10 from Andrej Mitrovic andrej.mitrov...@gmail.com 2012-10-24 10:21:54 PDT --- (In reply to comment #9) test.d(1): Error: module bitmanips cannot be found. Ok, I'll implement a pull and see what others think about it.

[Issue 4563] [module system] Error messages for missing package or missing name

2012-10-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 --- Comment #11 from bearophile_h...@eml.cc 2012-10-24 11:10:27 PDT --- (In reply to comment #10) Ok, I'll implement a pull and see what others think about it. Thank you. It would make it much easier to debug such cases if the error

[Issue 4563] [module system] Error messages for missing package or missing name

2012-10-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 --- Comment #13 from Andrej Mitrovic andrej.mitrov...@gmail.com 2012-10-24 11:19:11 PDT --- (In reply to comment #11) (In reply to comment #10) Ok, I'll implement a pull and see what others think about it. Thank you. I think we can do

[Issue 4563] [module system] Error messages for missing package or missing name

2012-10-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 --- Comment #12 from bearophile_h...@eml.cc 2012-10-24 11:17:33 PDT --- (In reply to comment #10) test.d(1): Error: module bitmanips cannot be found. Ok, I'll implement a pull and see what others think about it. Or: test.d(1): Error:

[Issue 4563] [module system] Error messages for missing package or missing name

2012-10-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 --- Comment #6 from Andrej Mitrovic andrej.mitrov...@gmail.com 2012-10-23 18:53:44 PDT --- (In reply to comment #0) import std.bitmanips; void main() {} test.d(1): Error: module bitmanips is in file 'std\bitmanips.d' which cannot be

[Issue 4563] [module system] Error messages for missing package or missing name

2012-01-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 Leandro Lucarella leandro.lucare...@sociomantic.com changed: What|Removed |Added CC|

[Issue 4563] [module system] Error messages for missing package or missing name

2012-01-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 --- Comment #4 from bearophile_h...@eml.cc 2012-01-04 03:11:27 PST --- The situation is not improved. Wrong D2 code: import core.stdc.stdlib: puts; import std.stdio: reverse; void main() { puts(hello); int[] a = [1, 2, 3];

[Issue 4563] [module system] Error messages for missing package or missing name

2011-11-25 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 --- Comment #3 from bearophile_h...@eml.cc 2011-11-25 16:36:00 PST --- Now the situation is worse (DMD 2.057head): import std.math: foo; void main() {} Gives: test.d(1): Error: import __anonymous foo not found test.d(1): Error: alias

[Issue 4563] [module system] Error messages for missing package or missing name

2011-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 --- Comment #2 from bearophile_h...@eml.cc 2011-08-10 14:05:55 PDT --- Giving code to a D newbie such person didn't know what this error message means: foo.d(3): Error: module ascii is in file 'std/ascii.d' which cannot be read import path[0]

[Issue 4563] [module system] Error messages for missing package or missing name

2010-08-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4563 Andrej Mitrovic andrej.mitrov...@gmail.com changed: What|Removed |Added CC|