-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Specify that packed types must derive, not implement, Copy #51143
Conversation
r? @cramertj (rust_highfive has picked a reviewer for you, use r? to override) |
Are all of the autogenerated derive impls already smart enough to |
I'm not sure; the error message though somewhat indicates that they should be... it looks like there's some code in libsyntax_ext which does something to take care of it, but I don't follow it well enough to be sure. It seems somewhat unrelated to this change though. |
I just checked the behavior with @bors r+ |
📌 Commit c604df6 has been approved by |
Ah, wait no-- it only omits the reference if the @bors r- |
c604df6
to
1f528ba
Compare
There's actually not much point then -- the way derive is structured, if the type derives Copy, the packed derive will be "safe" and as such not generate this warning. I've updated the PR to change the warning message to indicate that the type must derive Copy, not just implement it; and reverted the other changes. The long-term solution here is probably to drop the requirement that we "see" a Copy derive and generate code as-if the struct is Copy when we see that it's packed. Then we'd somehow ensure that structs who aren't Copy are errored early enough (before borrowck?) that the errors about moving out of a borrowed field don't get emitted. This is far harder though, and I don't have confidence in the correct approach, so I'm not going to work on that in this PR. |
1f528ba
to
033d75d
Compare
Sounds good to me. Thanks for the updates! r=me with travis passing. |
@bors r=cramertj |
📌 Commit 033d75d has been approved by |
🔒 Merge conflict |
033d75d
to
5c37473
Compare
@bors r=cramertj |
📌 Commit 5c37473 has been approved by |
⌛ Testing commit 5c37473 with merge 0bdd29c7e43d60ce5e4e37ee7ce99770a057de65... |
💔 Test failed - status-travis |
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
1 similar comment
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
@bors retry - timeout |
…ertj Specify that packed types must derive, not implement, Copy
Rollup of 6 pull requests Successful merges: - #51143 (Specify that packed types must derive, not implement, Copy) - #51226 (Make Layout's align a NonZeroUsize) - #51297 (Fix run button style) - #51306 (impl Default for &mut str) - #51312 (Clarify the difference between get_mut and into_mut for OccupiedEntry) - #51313 (use type name in E0599 enum variant suggestion) Failed merges:
💥 Test timed out |
Per @retep998's comment at #46043 (comment), this breaks WinAPI. |
It doesn't break |
No description provided.