-
Notifications
You must be signed in to change notification settings - Fork 360
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
Rustup to rustc 1.42.0-nightly (005cf38f7 2019-12-22) #1121
Conversation
@bors r+
|
📌 Commit c335eca has been approved by |
Rustup to rustc 1.42.0-nightly (005cf38f7 2019-12-22)
💔 Test failed - status-appveyor |
I can't figure out how to build a self-contained const eval repro :( |
I don't understand that assertion anyway... why does it make any sense? |
Good question, I haven't looked into it at all yet. |
When using for example: match &[0, 1] as &[u8] {
[x, y, a @ ..] => {}
_ => {}
} There will be a |
Thanks, I now have a minimal repro that works on just nightly without miri #![feature(slice_patterns)]
fn main() {
match &[0, 1] as &[i32] {
[a @ .., x] => {}
&[] => {}
}
} Since |
Fix PR: rust-lang/rust#67546 |
☔ The latest upstream changes (presumably #1118) made this pull request unmergeable. Please resolve the merge conflicts. |
@bors r+ |
📌 Commit 1ffa62f has been approved by |
Rustup to rustc 1.42.0-nightly (005cf38f7 2019-12-22)
💔 Test failed - status-appveyor |
@bors r+ |
📌 Commit bac2615 has been approved by |
Rustup to rustc 1.42.0-nightly (005cf38f7 2019-12-22)
☀️ Test successful - checks-travis, status-appveyor |
No description provided.