summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/2229_closure_analysis/diagnostics/liveness_unintentional_copy.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/closures/2229_closure_analysis/diagnostics/liveness_unintentional_copy.stderr')
-rw-r--r--tests/ui/closures/2229_closure_analysis/diagnostics/liveness_unintentional_copy.stderr33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/ui/closures/2229_closure_analysis/diagnostics/liveness_unintentional_copy.stderr b/tests/ui/closures/2229_closure_analysis/diagnostics/liveness_unintentional_copy.stderr
new file mode 100644
index 000000000..0410de4c7
--- /dev/null
+++ b/tests/ui/closures/2229_closure_analysis/diagnostics/liveness_unintentional_copy.stderr
@@ -0,0 +1,33 @@
+warning: value assigned to `a` is never read
+ --> $DIR/liveness_unintentional_copy.rs:20:9
+ |
+LL | a = s;
+ | ^
+ |
+ = help: maybe it is overwritten before being read?
+note: the lint level is defined here
+ --> $DIR/liveness_unintentional_copy.rs:4:9
+ |
+LL | #![warn(unused)]
+ | ^^^^^^
+ = note: `#[warn(unused_assignments)]` implied by `#[warn(unused)]`
+
+warning: unused variable: `a`
+ --> $DIR/liveness_unintentional_copy.rs:20:9
+ |
+LL | a = s;
+ | ^
+ |
+ = help: did you mean to capture by reference instead?
+ = note: `#[warn(unused_variables)]` implied by `#[warn(unused)]`
+
+warning: unused variable: `a`
+ --> $DIR/liveness_unintentional_copy.rs:36:9
+ |
+LL | a += x;
+ | ^
+ |
+ = help: did you mean to capture by reference instead?
+
+warning: 3 warnings emitted
+