2013-01-22 19:20:08 -06:00
|
|
|
fn foo(v: &[const uint]) -> ~[uint] {
|
|
|
|
v.to_vec()
|
|
|
|
}
|
|
|
|
|
2013-01-29 20:30:22 -06:00
|
|
|
fn bar(v: &mut [uint]) -> ~[uint] {
|
2013-01-22 19:20:08 -06:00
|
|
|
v.to_vec()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bip(v: &[uint]) -> ~[uint] {
|
|
|
|
v.to_vec()
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-01-22 19:20:08 -06:00
|
|
|
let mut the_vec = ~[1, 2, 3, 100];
|
|
|
|
assert the_vec == foo(the_vec);
|
|
|
|
assert the_vec == bar(the_vec);
|
|
|
|
assert the_vec == bip(the_vec);
|
|
|
|
}
|