-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Deny bare trait objects in src/librustc_errors #52286
Conversation
r? @varkor (rust_highfive has picked a reviewer for you, use r? to override) |
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 |
Can you squash these two commits? Everything else looks good, thanks! |
@varkor I'm all for it, though my git-foo is not too advanced yet; can you please check if I did it correctly? If it's ok, I'll do the same with the other PR you asked to squash. |
@ljedrz: when you've squashed your commits, you should just see
and then change |
Enforce `#![deny(bare_trait_objects)]` in `src/librustc_errors`.
82b42cb
to
0339244
Compare
I think I got this now, thanks! |
Great, thanks! @bors r+ rollup |
📌 Commit 0339244 has been approved by |
Deny bare trait objects in src/librustc_errors Enforce `#![deny(bare_trait_objects)]` in `src/librustc_errors`.
Rollup of 9 pull requests Successful merges: - #52286 (Deny bare trait objects in src/librustc_errors) - #52306 (Reduce the number of clone()s needed in obligation_forest) - #52338 (update miri) - #52385 (Pass edition flags to compiler from rustdoc as expected) - #52392 (AsRef doc wording tweaks) - #52430 (update nomicon) - #52434 (Enable incremental independent of stage) - #52435 (Calculate the exact capacity for 2 HashMaps) - #52446 (Block beta if clippy breaks.) r? @ghost
Enforce
#![deny(bare_trait_objects)]
insrc/librustc_errors
.