summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/let_underscore/let_underscore_drop.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lint/let_underscore/let_underscore_drop.stderr')
-rw-r--r--src/test/ui/lint/let_underscore/let_underscore_drop.stderr22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/lint/let_underscore/let_underscore_drop.stderr b/src/test/ui/lint/let_underscore/let_underscore_drop.stderr
deleted file mode 100644
index 7b7de202e..000000000
--- a/src/test/ui/lint/let_underscore/let_underscore_drop.stderr
+++ /dev/null
@@ -1,22 +0,0 @@
-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
-