summaryrefslogtreecommitdiffstats
path: root/tests/ui/swap-1.rs
blob: d87114748dd87ce128ceef6bc1ef861dc548a186 (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass

use std::mem::swap;

pub fn main() {
    let mut x = 3; let mut y = 7;
    swap(&mut x, &mut y);
    assert_eq!(x, 7);
    assert_eq!(y, 3);
}