Sign in
rust
/
rust-clippy
/
ef6e711dc1c8feaa1f00a41bc5b0ca9fcbce1fb3
/
.
/
tests
/
ui
/
empty_drop.fixed
blob: ec7ce480722572390fe35a48f82443bb39eceb04 [
file
]
#![warn(clippy::empty_drop)]
// should cause an error
struct
Foo
;
// shouldn't cause an error
struct
Bar
;
impl
Drop
for
Bar
{
fn drop
(&
mut
self
)
{
println
!(
"dropping bar!"
);
}
}
// should error
struct
Baz
;
fn main
()
{}