mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
9 lines
104 B
Rust
9 lines
104 B
Rust
//@ run-pass
|
|
|
|
#![allow(dropping_copy_types)]
|
|
|
|
fn main() {
|
|
use ::std::mem;
|
|
mem::drop(2_usize);
|
|
}
|