mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 02:31:13 +00:00
9 lines
177 B
Rust
9 lines
177 B
Rust
//@ check-pass
|
|
|
|
#![allow(forgetting_copy_types)]
|
|
|
|
const _: () = core::mem::forget(Box::<u32>::default);
|
|
const _: () = core::mem::forget(|| Box::<u32>::default());
|
|
|
|
fn main() {}
|