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

           Summary: AA.keys with char keys
           Product: D
           Version: D2
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nob...@puremagic.com
        ReportedBy: bearophile_h...@eml.cc


--- Comment #0 from bearophile_h...@eml.cc 2011-01-20 03:18:09 PST ---
Similar code used to work in D1 (printing "aehilmpstx "), but with DMD 2.051 it
prints a wrong output:



import std.stdio;
void main() {
    string text = "this is a text example";
    int[char] aa;
    foreach (c; text)
        aa[c]++;
    writeln(aa.keys);
}


Generated printout:
t1@

Expected printout, something like:
['t', 'h', ' ', 'x', 'p', 'l', 'i', 'a', 'e', 'm', 's]

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

Reply via email to