Hello!

I need to overload opEquals on shared class C

shared class C
{
    override bool opEquals(Object o) { return false; }
}

But compilation fails with the message:
Error: function f700.C.opEquals does not override any function, did you mean to override 'object.Object.opEquals'?

What am I doing wrong?

Reply via email to