summary refs log tree commit diff
path: root/src/test/run-pass/swap-1.rs
blob: 5cab30e86315ba30249847c130ee85be8b5f57a7 (plain)
1
2
3
4
fn main() {
    let mut x = 3; let mut y = 7;
    x <-> y; assert (x == 7); assert (y == 3);
}