summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/2229_closure_analysis/diagnostics/liveness.stderr
blob: cf414adc0b943911576ba568ea59febedfbc83ae (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
warning: value captured by `a` is never read
  --> $DIR/liveness.rs:24:9
   |
LL |         a = 1;
   |         ^
   |
   = help: did you mean to capture by reference instead?
note: the lint level is defined here
  --> $DIR/liveness.rs:5:9
   |
LL | #![warn(unused)]
   |         ^^^^^^
   = note: `#[warn(unused_assignments)]` implied by `#[warn(unused)]`

warning: unused variable: `a`
  --> $DIR/liveness.rs:33:9
   |
LL |         a += 1;
   |         ^
   |
   = help: did you mean to capture by reference instead?
   = note: `#[warn(unused_variables)]` implied by `#[warn(unused)]`

warning: value assigned to `a` is never read
  --> $DIR/liveness.rs:53:9
   |
LL |         a += 1;
   |         ^
   |
   = help: maybe it is overwritten before being read?

warning: value assigned to `a` is never read
  --> $DIR/liveness.rs:77:13
   |
LL |             a = Some("d1");
   |             ^
   |
   = help: maybe it is overwritten before being read?

warning: value assigned to `b` is never read
  --> $DIR/liveness.rs:85:13
   |
LL |             b = Some("e1");
   |             ^
   |
   = help: maybe it is overwritten before being read?

warning: value assigned to `b` is never read
  --> $DIR/liveness.rs:87:13
   |
LL |             b = Some("e2");
   |             ^
   |
   = help: maybe it is overwritten before being read?

warning: unused variable: `b`
  --> $DIR/liveness.rs:85:13
   |
LL |             b = Some("e1");
   |             ^
   |
   = help: did you mean to capture by reference instead?

warning: 7 warnings emitted