https://issues.dlang.org/show_bug.cgi?id=24835
Dlang Bot <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull --- Comment #1 from Dlang Bot <[email protected]> --- @jmdavis created dlang/dmd pull request #17056 "Fix bugzilla issue 24835." fixing this issue: - Fix bugzilla issue 24835. I don't know why hasElaborateAssign even bothers to look at the member variable, since the compiler should be generating opAssign for the struct if any of its member variables has one, but doing that check then incorrectly reports that the struct has opAssign when that opAssign is @disabled. So, this fixes it so that it just checks the struct itself for opAssign. Ultimately, that's what matters anyway. https://github.com/dlang/dmd/pull/17056 --
