class C{
  override bool opEquals( Object o){
    return true;
  }
}
unittest{
  auto c= new C;
  assert( c == c);
}

`rdmd --main -unittest -cov' shows, that opEquals is not executed. Why?

-manfred

Reply via email to