about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/empty_drop.fixed
blob: 17cfdcdc9c6854ef0a92a2195a75038976496564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![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() {}