2022-11-09 02:08:22 +00:00
|
|
|
// check-pass
|
2023-03-29 22:18:20 +02:00
|
|
|
|
2023-05-19 11:19:31 +02:00
|
|
|
#![allow(forgetting_copy_types)]
|
2023-03-29 22:18:20 +02:00
|
|
|
|
2022-11-09 02:08:22 +00:00
|
|
|
const _: () = core::mem::forget(Box::<u32>::default);
|
|
|
|
const _: () = core::mem::forget(|| Box::<u32>::default());
|
|
|
|
|
|
|
|
fn main() {}
|