mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 21:27:18 +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);
|
|
}
|
|
}
|