[Issue 3890] New: Bad writeln of a nested struct

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sun Mar 7 17:02:09 PST 2010


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

           Summary: Bad writeln of a nested struct
           Product: D
           Version: 2.040
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody at puremagic.com
        ReportedBy: bearophile_hugs at eml.cc


--- Comment #0 from bearophile_hugs at eml.cc 2010-03-07 17:02:05 PST ---
This small D2 program prints just:
Pair
Instead of something better like:
Pair("hello", Int(5))


import std.stdio: writeln;

struct Int {
    int x;
    const bool opEquals(ref const Int other) {
        return this.x == other.x;
    }
}

struct Pair {
    string s;
    Int i;
}

void main() {
    writeln(Pair("hello", Int(5)));
}

-- 
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