We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following code worked as of 0.11.0 but no longer produces an expected result on master.
0.11.0
fn main() { let mut foo = Some("Kitten".to_string()); match foo { None => {}, Some(x) => { foo = Some(x); } }; println!("'{:s}'", foo.unwrap()); }
on 0.11.0:
'Kitten'
on master:
''
Another example
fn main() { let mut foo = Some(box 5i); match foo { None => {}, Some(x) => { foo = Some(x); } }; println!("'{}'", foo.unwrap()); }
'5'
task '<main>' failed at 'called `Option::unwrap()` on a `None` value', /build/rust-git/src/rust/src/libcore/option.rs:265
The text was updated successfully, but these errors were encountered:
cc @luqmana, I think this is probably a bug introduced by your change
Sorry, something went wrong.
auto merge of #16185 : luqmana/rust/match-drop, r=pcwalton
69c58bc
Fixes #15571. Fixes #16151. r? @pcwalton
Auto merge of rust-lang#15571 - Veykril:mir-alloc, r=Veykril
d5b6ab2
Remove allocation on mir eval memory write
Successfully merging a pull request may close this issue.
The following code worked as of
0.11.0
but no longer produces an expected result on master.on 0.11.0:
on master:
Another example
on 0.11.0:
on master:
The text was updated successfully, but these errors were encountered: