Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
issue-104155.rs
blob: ed3cd9c4bdfe368360149756eb3493579e86e732 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
allow
(
forgetting_copy_types
)]
const
_
:
()
=
core
::
mem
::
forget
(
Box
::<
u32
>::
default
);
const
_
:
()
=
core
::
mem
::
forget
(||
Box
::<
u32
>::
default
());
fn
main
()
{}