[Issue 3813] Bad writeln of string arrays

2010-08-09 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3813 --- Comment #5 from bearophile_h...@eml.cc 2010-08-09 08:49:59 PDT --- See also bug 4605 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 3813] Bad writeln of string arrays

2010-08-09 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3813 --- Comment #4 from bearophile_h...@eml.cc 2010-08-09 08:41:44 PDT --- Sorry, the expected results are wrong because writeln() can't see TypeTuple items as inside a collection, so the expected output is: ["10", "20"] [10, 20] 579 10207 Tuple!(

[Issue 3813] Bad writeln of string arrays

2010-08-09 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3813 --- Comment #3 from bearophile_h...@eml.cc 2010-08-09 07:31:25 PDT --- In dmd 2.048beta the situation is improved, but it's not good enough yet. This D2 program: import std.stdio, std.typetuple, std.typecons; void main() { auto a1 = ["10",

[Issue 3813] Bad writeln of string arrays

2010-02-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3813 --- Comment #2 from bearophile_h...@eml.cc 2010-02-18 10:56:31 PST --- (In reply to comment #1) > This is by design. The default array bounds were changed from "[" and "]" to > "" > and "", and the default separator has been changed from ", " t

[Issue 3813] Bad writeln of string arrays

2010-02-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3813 Andrei Alexandrescu changed: What|Removed |Added CC||and...@metalanguage.com --- Comm