Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
unique-pinned-nocopy.rs
blob: 8edaeef51e06190fc91d8e73fd8ceee05449be09 [
file
] [
log
] [
blame
]
#[
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
);
}