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