2012-04-26 18:02:01 -05:00
|
|
|
fn match_imm_box(v: &const @option<int>) -> int {
|
2012-08-06 14:34:08 -05:00
|
|
|
match *v {
|
2012-08-03 21:59:04 -05:00
|
|
|
@some(i) => {i}
|
|
|
|
@none => {0}
|
2012-04-26 18:02:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn match_const_box(v: &const @const option<int>) -> int {
|
2012-08-06 14:34:08 -05:00
|
|
|
match *v {
|
2012-08-03 21:59:04 -05:00
|
|
|
@some(i) => { i } // ok because this is pure
|
|
|
|
@none => {0}
|
2012-05-22 23:36:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pure fn pure_process(_i: int) {}
|
|
|
|
|
|
|
|
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-03 21:59:04 -05:00
|
|
|
@some(i) => {
|
2012-05-22 23:36:50 -05:00
|
|
|
pure_process(i)
|
2012-04-26 18:02:01 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
@none => {}
|
2012-05-22 23:36:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn process(_i: int) {}
|
|
|
|
|
|
|
|
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-03 21:59:04 -05:00
|
|
|
@some(i) => { //~ ERROR illegal borrow unless pure: enum variant in aliasable, mutable location
|
2012-06-30 06:23:59 -05:00
|
|
|
process(i) //~ NOTE impure due to access to impure function
|
2012-05-22 23:36:50 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
@none => {}
|
2012-04-26 18:02:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|