2012-04-26 16:02:01 -07:00
|
|
|
fn match_ref(&&v: option<int>) -> int {
|
2012-08-06 12:34:08 -07:00
|
|
|
match v {
|
2012-08-07 06:04:36 -07:00
|
|
|
some(ref i) => {
|
|
|
|
*i
|
2012-04-26 16:02:01 -07:00
|
|
|
}
|
2012-08-03 19:59:04 -07:00
|
|
|
none => {0}
|
2012-04-26 16:02:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn match_ref_unused(&&v: option<int>) {
|
2012-08-06 12:34:08 -07:00
|
|
|
match v {
|
2012-08-03 19:59:04 -07:00
|
|
|
some(_) => {}
|
|
|
|
none => {}
|
2012-04-26 16:02:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn match_const_reg(v: &const option<int>) -> int {
|
2012-08-06 12:34:08 -07:00
|
|
|
match *v {
|
2012-08-07 06:04:36 -07:00
|
|
|
some(ref i) => {*i} // OK because this is pure
|
2012-08-03 19:59:04 -07:00
|
|
|
none => {0}
|
2012-04-26 16:02:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 21:36:50 -07:00
|
|
|
fn impure(_i: int) {
|
|
|
|
}
|
|
|
|
|
2012-04-26 16:02:01 -07:00
|
|
|
fn match_const_reg_unused(v: &const option<int>) {
|
2012-08-06 12:34:08 -07:00
|
|
|
match *v {
|
2012-08-03 19:59:04 -07:00
|
|
|
some(_) => {impure(0)} // OK because nothing is captured
|
|
|
|
none => {}
|
2012-04-26 16:02:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 21:36:50 -07:00
|
|
|
fn match_const_reg_impure(v: &const option<int>) {
|
2012-08-06 12:34:08 -07:00
|
|
|
match *v {
|
2012-08-07 06:04:36 -07:00
|
|
|
some(ref i) => {impure(*i)} //~ ERROR illegal borrow unless pure
|
2012-06-30 12:23:59 +01:00
|
|
|
//~^ NOTE impure due to access to impure function
|
2012-08-03 19:59:04 -07:00
|
|
|
none => {}
|
2012-05-22 21:36:50 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn match_imm_reg(v: &option<int>) {
|
2012-08-06 12:34:08 -07:00
|
|
|
match *v {
|
2012-08-07 06:04:36 -07:00
|
|
|
some(ref i) => {impure(*i)} // OK because immutable
|
2012-08-03 19:59:04 -07:00
|
|
|
none => {}
|
2012-04-26 16:02:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|