Sign in
rust
/
rust
/
0e252dfa22dd03f8a87f665d0ebe1192a5da07bf
/
.
/
src
/
tools
/
clippy
/
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
()
{}