summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/let_underscore_drop.stderr
blob: ee7bbe995f1684e28bbf064d9cd79cdb2e6c4257 (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
error: non-binding `let` on a type that implements `Drop`
  --> $DIR/let_underscore_drop.rs:17:5
   |
LL |     let _ = Box::new(());
   |     ^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::let-underscore-drop` implied by `-D warnings`
   = help: consider using an underscore-prefixed named binding or dropping explicitly with `std::mem::drop`

error: non-binding `let` on a type that implements `Drop`
  --> $DIR/let_underscore_drop.rs:18:5
   |
LL |     let _ = Droppable;
   |     ^^^^^^^^^^^^^^^^^^
   |
   = help: consider using an underscore-prefixed named binding or dropping explicitly with `std::mem::drop`

error: non-binding `let` on a type that implements `Drop`
  --> $DIR/let_underscore_drop.rs:19:5
   |
LL |     let _ = Some(Droppable);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using an underscore-prefixed named binding or dropping explicitly with `std::mem::drop`

error: aborting due to 3 previous errors