rust/src/test/run-pass/coerce-reborrow-mut-vec-rcvr.rs
2013-06-30 21:15:25 +10:00

12 lines
196 B
Rust

fn bar(v: &mut [uint]) {
v.reverse();
v.reverse();
v.reverse();
}
pub fn main() {
let mut the_vec = ~[1, 2, 3, 100];
bar(the_vec);
assert_eq!(the_vec, ~[100, 3, 2, 1]);
}