rust/tests/ui/borrowck/borrowck-pat-enum.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
572 B
Rust
Raw Normal View History

//@ run-pass
#![allow(dead_code)]
fn match_ref(v: Option<isize>) -> isize {
2012-08-06 19:34:08 +00:00
match v {
2012-08-20 19:23:37 +00:00
Some(ref i) => {
*i
}
2012-08-20 19:23:37 +00:00
None => {0}
}
}
fn match_ref_unused(v: Option<isize>) {
2012-08-06 19:34:08 +00:00
match v {
2012-08-20 19:23:37 +00:00
Some(_) => {}
None => {}
}
}
fn impure(_i: isize) {
}
fn match_imm_reg(v: &Option<isize>) {
2012-08-06 19:34:08 +00:00
match *v {
2012-08-20 19:23:37 +00:00
Some(ref i) => {impure(*i)} // OK because immutable
None => {}
}
}
fn match_mut_reg(v: &mut Option<isize>) {
2013-03-15 19:24:24 +00:00
match *v {
Some(ref i) => {impure(*i)} // OK, frozen
None => {}
}
}
pub fn main() {
}