summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/empty_drop.fixed
blob: 2e1b768461ab2a1e7483831b842e4822b4c13502 (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() {}