mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
231 B
Rust
14 lines
231 B
Rust
// run-pass
|
|
// pretty-expanded FIXME #23616
|
|
|
|
pub fn main() {
|
|
use std::mem::replace;
|
|
let mut x = 5;
|
|
let _ = replace(&mut x, 6);
|
|
{
|
|
use std::mem::*;
|
|
let mut y = 6;
|
|
swap(&mut x, &mut y);
|
|
}
|
|
}
|