Skip to content
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

Modifying a Option<String> via pattern matching results in inconsistent behavior #15571

Closed
ghost opened this issue Jul 10, 2014 · 1 comment · Fixed by #16185
Closed

Modifying a Option<String> via pattern matching results in inconsistent behavior #15571

ghost opened this issue Jul 10, 2014 · 1 comment · Fixed by #16185

Comments

@ghost
Copy link

ghost commented Jul 10, 2014

The following code worked as of 0.11.0 but no longer produces an expected result on master.

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());
}

on 0.11.0:

'5'

on master:

task '<main>' failed at 'called `Option::unwrap()` on a `None` value', /build/rust-git/src/rust/src/libcore/option.rs:265
@pcwalton
Copy link
Contributor

cc @luqmana, I think this is probably a bug introduced by your change

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant