mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00

Additionally, remove unused `tests/ui/auxiliary/svh-*` crates that are duplicates of `tests/ui/svh/auxiliary/svh-*`.
15 lines
290 B
Rust
15 lines
290 B
Rust
//! Check the basic functionality of `std::mem::swap` to ensure it correctly
|
|
//! exchanges the values of two mutable variables.
|
|
|
|
//@ 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);
|
|
}
|