summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/empty_drop.stderr
blob: 70f7880d03601314e4ea7bd40f6b8d0098b3dd8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: empty drop implementation
  --> $DIR/empty_drop.rs:8:1
   |
LL | / impl Drop for Foo {
LL | |     fn drop(&mut self) {}
LL | | }
   | |_^ help: try removing this impl
   |
   = note: `-D clippy::empty-drop` implied by `-D warnings`

error: empty drop implementation
  --> $DIR/empty_drop.rs:24:1
   |
LL | / impl Drop for Baz {
LL | |     fn drop(&mut self) {
LL | |         {}
LL | |     }
LL | | }
   | |_^ help: try removing this impl

error: aborting due to 2 previous errors