rust/src/test/compile-fail/borrowck-pat-enum-in-box.rs

39 lines
767 B
Rust
Raw Normal View History

2012-08-20 14:23:37 -05:00
fn match_imm_box(v: &const @Option<int>) -> int {
2012-08-06 14:34:08 -05:00
match *v {
2012-08-20 14:23:37 -05:00
@Some(ref i) => {*i}
@None => {0}
}
}
2012-08-20 14:23:37 -05:00
fn match_const_box(v: &const @const Option<int>) -> int {
2012-08-06 14:34:08 -05:00
match *v {
2012-08-20 14:23:37 -05:00
@Some(ref i) => { *i } // ok because this is pure
@None => {0}
}
}
pure fn pure_process(_i: int) {}
2012-08-20 14:23:37 -05:00
fn match_const_box_and_do_pure_things(v: &const @const Option<int>) {
2012-08-06 14:34:08 -05:00
match *v {
2012-08-20 14:23:37 -05:00
@Some(ref i) => {
pure_process(*i)
}
2012-08-20 14:23:37 -05:00
@None => {}
}
}
fn process(_i: int) {}
2012-08-20 14:23:37 -05:00
fn match_const_box_and_do_bad_things(v: &const @const Option<int>) {
2012-08-06 14:34:08 -05:00
match *v {
2012-08-20 14:23:37 -05:00
@Some(ref i) => { //~ ERROR illegal borrow unless pure
process(*i) //~ NOTE impure due to access to impure function
}
2012-08-20 14:23:37 -05:00
@None => {}
}
}
fn main() {
}