-
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
Add some more regression tests #77956
Conversation
use std::rc::Rc; | ||
use std::sync::Arc; | ||
|
||
pub trait CastTo<T: ?Sized>: Unsize<T> { |
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.
Any reason this is not using the minimal version that's in the issue description (as opposed to what's in the playground?)
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.
Ah, good point! I assumed that both examples were the same.
Overall LGTM, r=me but not instructing bors just in case you want to address the comment above, either way choice's yours. As a side comment, these would have been easier to review if they were split into PRs for each of the |
Addressed the review via d80f93d and rebased to make sure the diagnostics aren't changed.
Fair enough, but in this case, #73905 fixed 10+ ICEs so it would have needed some more hustle :) |
📌 Commit d80f93d has been approved by |
☀️ Test successful - checks-actions, checks-azure |
This is another round of #77741. Tested with
debug-assertions=true
and it passed on my local.Closes #70877
Closes #70944
Closes #71659
Closes #74816
Closes #75707
Closes #75983
(Skipped #63355 because I'm not sure about the error.)