2012-05-16 14:43:57 -05:00
|
|
|
// xfail-fast (compile-flags unsupported on windows)
|
2012-04-26 18:02:01 -05:00
|
|
|
// compile-flags:--borrowck=err
|
|
|
|
|
|
|
|
fn match_imm_box(v: &const @option<int>) -> int {
|
|
|
|
alt *v {
|
|
|
|
@some(i) {i}
|
|
|
|
@none {0}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn match_const_box(v: &const @const option<int>) -> int {
|
2012-05-22 23:36:50 -05:00
|
|
|
alt *v {
|
|
|
|
@some(i) { i } // ok because this is pure
|
|
|
|
@none {0}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pure fn pure_process(_i: int) {}
|
|
|
|
|
|
|
|
fn match_const_box_and_do_pure_things(v: &const @const option<int>) {
|
2012-04-26 18:02:01 -05:00
|
|
|
alt *v {
|
|
|
|
@some(i) {
|
2012-05-22 23:36:50 -05:00
|
|
|
pure_process(i)
|
2012-04-26 18:02:01 -05:00
|
|
|
}
|
2012-05-22 23:36:50 -05:00
|
|
|
@none {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn process(_i: int) {}
|
|
|
|
|
|
|
|
fn match_const_box_and_do_bad_things(v: &const @const option<int>) {
|
|
|
|
alt *v {
|
|
|
|
@some(i) { //! NOTE pure context is required due to an illegal borrow: enum variant in aliasable, mutable location
|
|
|
|
process(i) //! ERROR access to non-pure functions prohibited in a pure context
|
|
|
|
}
|
|
|
|
@none {}
|
2012-04-26 18:02:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|