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