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