-
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
typeck: use a TypeVisitor in ctp #35143
Conversation
@bors r+ |
📌 Commit 0a128f3 has been approved by |
typeck: use a TypeVisitor in ctp Use a TypeVisitor in ctp instead of `ty::walk` This fixes a few cases where a region could be projected out of a trait while not being constrained by the type parameters, violating rust-lang/rfcs#447 and breaking soundness. As such, this is a [breaking-change]. Fixes #35139 r? @eddyb
Crater report shows 1 root regression: cc @rust-lang/lang |
This is due to a soundness fix in rustc: rust-lang/rust#35143 Signed-off-by: David Henningsson <diwic@ubuntu.com>
Given the minimal impact, this doesn't require a warning period, but we still ought to do our best to minimize impact before landing and help users. e.g. give an explanatory note on the error indicating that there was a recent bug-fix (it'd be ok, I think, for that note to appear even if the error would have happened before), and/or submit a PR to fix the problem. Still, given that this landed, I'm not inclined to roll it back. Just saying. cc @Kimundi -- this change fixes a hole that the "owning-ref" crate was relying on. |
Use a TypeVisitor in ctp instead of
ty::walk
This fixes a few cases where a region could be projected out of a trait while not being constrained by the type parameters, violating rust-lang/rfcs#447 and breaking soundness. As such, this is a [breaking-change].
Fixes #35139
r? @eddyb