rust/src/test/run-pass/borrowck-preserve-box-sometimes-needed.rs
2012-06-08 20:39:11 -07:00

14 lines
215 B
Rust

// exec-env:RUST_POISON_ON_FREE=1
fn switcher(x: option<@int>) {
let mut x = x;
alt x {
some(@y) { copy y; x = none; }
none { }
}
}
fn main() {
switcher(none);
switcher(some(@3));
}