[Issue 3813] Bad writeln of string arrays

d-bugmail at puremagic.com d-bugmail at puremagic.com
Mon Aug 9 08:41:47 PDT 2010


http://d.puremagic.com/issues/show_bug.cgi?id=3813



--- Comment #4 from bearophile_hugs at 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!(int,string)(10, "20")


And the possible alternative output is:

["10", "20"]
[10, 20]
['5', '7', '9']
10207
Tuple!(int, string)(10, "20")

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list