-
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
Update check::cast::pointer_kind logic to new rustc #46973
Conversation
Make the match exhaustive, adding handling for anonymous types and tuple coercions on the way. Also, exit early when type errors are detected, to avoid error cascades and the like.
r? @estebank (rust_highfive has picked a reviewer for you, use r? to override) |
beta-nominating because regressioin |
These can happen if prior errors disable defaulting. Fixes rust-lang#43825.
@bors r+ p=1 |
📌 Commit 6aca330 has been approved by |
⌛ Testing commit 6aca330 with merge f6627b9b73f6160edec871ff21afd05ffaf1fff9... |
💔 Test failed - status-travis |
⌛ Testing commit 6aca330 with merge 1dc9c64e04f149a00a83898868e2e6234c7ac04b... |
💔 Test failed - status-travis |
☀️ Test successful - status-appveyor, status-travis |
Unfortunately we forgot to backport to 1.23.0 (sorry about that!) so removing beta tags |
Make the match exhaustive, adding handling for anonymous types and
tuple coercions on the way.
Also, exit early when type errors are detected, to avoid error cascades
and the like.
Fixes #33690.
Fixes #46365.
Fixes #46880.