rust/src/test/run-pass/swap-2.rs

13 lines
276 B
Rust
Raw Normal View History

2012-03-26 20:35:18 -05:00
fn swap<T>(v: [mut T], i: int, j: int) { v[i] <-> v[j]; }
2011-06-15 19:08:10 -05:00
fn main() {
let a: [mut int]/~ = [mut 0, 1, 2, 3, 4, 5, 6]/~;
2011-06-15 19:08:10 -05:00
swap(a, 2, 4);
assert (a[2] == 4);
assert (a[4] == 2);
let mut n = 42;
n <-> a[0];
assert (a[0] == 42);
2011-07-27 07:19:39 -05:00
assert (n == 0);
}