Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
explicit
/
explicit-call-to-dtor.rs
blob: 0656871eb1b34c058906ed24a99ef2f16186b4d2 [
file
] [
log
] [
blame
]
// run-rustfix
struct
Foo
{
x
:
isize
}
impl
Drop
for
Foo
{
fn
drop
(&
mut
self
)
{
println
!(
"kaboom"
);
}
}
fn
main
()
{
let
x
=
Foo
{
x
:
3
};
println
!(
"{}"
,
x
.
x
);
x
.
drop
();
//~ ERROR explicit use of destructor method
}