Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
explicit
/
explicit-call-to-dtor.rs
blob: 262dde54c7f6a5ac7cb8a8a4760dad5bd0cefb41 [
file
]
//@ 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
}