Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
box
/
unit
/
unique-pinned-nocopy.rs
blob: 8edaeef51e06190fc91d8e73fd8ceee05449be09 [
file
] [
log
] [
blame
] [
edit
]
#[
derive
(
Debug
)]
struct
R
{
b
:
bool
,
}
impl
Drop
for
R
{
fn
drop
(&
mut
self
)
{}
}
fn
main
()
{
let
i
=
Box
::
new
(
R
{
b
:
true
});
let
_j
=
i
.
clone
();
//~ ERROR the method
println
!(
"{:?}"
,
i
);
}