Thread overview
[Issue 3890] New: Bad writeln of a nested struct
Sep 02, 2011
Kenji Hara
Oct 22, 2012
Andrej Mitrovic
March 08, 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@puremagic.com
        ReportedBy: bearophile_hugs@eml.cc


--- Comment #0 from bearophile_hugs@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: -------
September 02, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=3890



--- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2011-09-02 12:07:03 PDT ---
https://github.com/D-Programming-Language/phobos/pull/126

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
October 22, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=3890


Andrej Mitrovic <andrej.mitrovich@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |andrej.mitrovich@gmail.com
         Resolution|                            |FIXED


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