I think you are wanting opAssign not opBinary.

Also you made a mistake, since its a struct you don't want to new it when you construct and return it.

```d
return new Time(secos / 3600, (secos % 3600) / 60, secos % 60);
```

Would be a ``Time*`` not ``Time`` which is what you returned.

Reply via email to