-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
When accessing private field of union, do not misidentify it as a struct #63982
Conversation
Fix incorrect error message when accessing private field of union
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @zackmdavis (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you update tests with ./x.py test --stage 1 src/test/ui --bless
(see also the dev guide chapter)?
📌 Commit 378c32b has been approved by |
When accessing private field of union, do not misidentify it as a struct Fix incorrect error message when accessing private field of union. Fixes rust-lang#63976.
Rollup of 4 pull requests Successful merges: - #61626 (Get rid of special const intrinsic query in favour of `const_eval`) - #63600 (Merge oli-obk mail addresses) - #63684 (Constify LinkedList new function) - #63982 (When accessing private field of union, do not misidentify it as a struct) Failed merges: r? @ghost
When accessing private field of union, do not misidentify it as a struct Fix incorrect error message when accessing private field of union. Fixes #63976.
☀️ Test successful - checks-azure |
Fix incorrect error message when accessing private field of union.
Fixes #63976.