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)
Comment #1 by robert.schadek — 2024-12-07T13:38:02Z