about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/empty_drop.stderr
blob: 3073bf553969b4efee5c1b1016a0a6ed42d24d2b (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
25
26
27
28
error: empty drop implementation
  --> tests/ui/empty_drop.rs:7:1
   |
LL | / impl Drop for Foo {
LL | |
LL | |     fn drop(&mut self) {}
LL | | }
   | |_^
   |
   = note: `-D clippy::empty-drop` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::empty_drop)]`
   = help: try removing this impl

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

error: aborting due to 2 previous errors