The documentation about opAssign seems be incorrect: http://d-programming-language.org/struct.html It says: > Struct assignment t=s is defined to be semantically equivalent to: > t = S.opAssign(s); which I think should be `t.opAssign(s)`. also, just below, the signature is stated as `S* opAssign(S s)`. According to this post on the newsgroup <http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.learn&artnum=30203>, the correct signature should be `void opAssign(ref const S rhs)`.
Commit pushed to https://github.com/D-Programming-Language/d-programming-language.org https://github.com/D-Programming-Language/d-programming-language.org/commit/3628a19b1cd26e43ba2a7fa4a64673f7c2d97fd9 fix Issue 6839 - documentation for opAssign incorrect