www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 18500] New: Be able to overwrite object.Object.toString with

https://issues.dlang.org/show_bug.cgi?id=18500

          Issue ID: 18500
           Summary: Be able to overwrite object.Object.toString with inout
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P1
         Component: druntime
          Assignee: nobody puremagic.com
          Reporter: greensunny12 gmail.com

cat << EOF | dmd -c -o- -run -
void main()
{
    class F
    {
        override string toString() inout  safe
        {
            return "Foo";
        }
    }
}
EOF

I'm aware that the current overloading rules don't really take `inout` into
account, but defining all three overloads is really annoying.


See also: https://issues.dlang.org/show_bug.cgi?id=9772 (removing toString from
Object)

--
Feb 22 2018