summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/empty_drop.fixed
blob: fd0a9a7081eab0b63b18efc2a4ec37c8cbe80e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//@run-rustfix
#![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() {}