summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/let_underscore/let_underscore_drop.stderr
blob: 7b7de202e46268db4fa376fcb00913b586901207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
warning: non-binding let on a type that implements `Drop`
  --> $DIR/let_underscore_drop.rs:13:5
   |
LL |     let _ = NontrivialDrop;
   |     ^^^^^^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/let_underscore_drop.rs:2:9
   |
LL | #![warn(let_underscore_drop)]
   |         ^^^^^^^^^^^^^^^^^^^
help: consider binding to an unused variable to avoid immediately dropping the value
   |
LL |     let _unused = NontrivialDrop;
   |         ~~~~~~~
help: consider immediately dropping the value
   |
LL |     drop(NontrivialDrop);
   |     ~~~~~              +

warning: 1 warning emitted