-
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
Replace core::iter::AlwaysOk<T>
by Result<T, !>
#50941
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
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.
Thanks, @kennytm!
Ping from triage, @withoutboats ! |
Ping from triage, @withoutboats / @rust-lang/libs, this PR needs your review! |
@bors r+ |
📌 Commit a5f8572 has been approved by |
🔒 Merge conflict |
@bors r=sfackler |
📌 Commit 8ae1889 has been approved by |
Replace `core::iter::AlwaysOk<T>` by `Result<T, !>` #43278 has been fixed, so we don't need this struct anymore. (Actually we don't even need `.unwrap()` thanks to `#![feature(exhaustive_patterns)]`)
☀️ Test successful - status-appveyor, status-travis |
#43278 has been fixed, so we don't need this struct anymore.
(Actually we don't even need
.unwrap()
thanks to#![feature(exhaustive_patterns)]
)