2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-03-09 01:37:16 +00:00
rust-clippy/tests/ui/empty_drop.fixed

23 lines
262 B
Rust

#![warn(clippy::empty_drop)]
#![allow(unused)]
// 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() {}