summaryrefslogtreecommitdiffstats
path: root/src/test/ui/liveness/liveness-upvars.stderr
blob: cb104e0a3fddaefcf4d328c098a1026c72bfd994 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
warning: value assigned to `last` is never read
  --> $DIR/liveness-upvars.rs:10:9
   |
LL |         last = Some(s);
   |         ^^^^
   |
note: the lint level is defined here
  --> $DIR/liveness-upvars.rs:4:9
   |
LL | #![warn(unused)]
   |         ^^^^^^
   = note: `#[warn(unused_assignments)]` implied by `#[warn(unused)]`
   = help: maybe it is overwritten before being read?

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

warning: unused variable: `sum`
  --> $DIR/liveness-upvars.rs:22:9
   |
LL |         sum += x;
   |         ^^^
   |
   = help: did you mean to capture by reference instead?

warning: value captured by `c` is never read
  --> $DIR/liveness-upvars.rs:32:9
   |
LL |         c = 1;
   |         ^
   |
   = help: did you mean to capture by reference instead?

warning: value captured by `c` is never read
  --> $DIR/liveness-upvars.rs:36:9
   |
LL |         c = 1;
   |         ^
   |
   = help: did you mean to capture by reference instead?

warning: unused variable: `c`
  --> $DIR/liveness-upvars.rs:42:9
   |
LL |         c += 1;
   |         ^
   |
   = help: did you mean to capture by reference instead?

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

warning: unused variable: `c`
  --> $DIR/liveness-upvars.rs:45:9
   |
LL |         c += 1;
   |         ^
   |
   = help: did you mean to capture by reference instead?

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

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

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

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

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

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

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

warning: value assigned to `z` is never read
  --> $DIR/liveness-upvars.rs:99:17
   |
LL |                 z = T::default();
   |                 ^
   |
   = help: maybe it is overwritten before being read?

warning: unused variable: `z`
  --> $DIR/liveness-upvars.rs:99:17
   |
LL |                 z = T::default();
   |                 ^
   |
   = help: did you mean to capture by reference instead?

warning: value assigned to `state` is never read
  --> $DIR/liveness-upvars.rs:125:9
   |
LL |         state = 4;
   |         ^^^^^
   |
   = help: maybe it is overwritten before being read?

warning: value assigned to `state` is never read
  --> $DIR/liveness-upvars.rs:128:9
   |
LL |         state = 5;
   |         ^^^^^
   |
   = help: maybe it is overwritten before being read?

warning: unused variable: `state`
  --> $DIR/liveness-upvars.rs:125:9
   |
LL |         state = 4;
   |         ^^^^^
   |
   = help: did you mean to capture by reference instead?

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

warning: value assigned to `s` is never read
  --> $DIR/liveness-upvars.rs:139:9
   |
LL |         s = yield ();
   |         ^
   |
   = help: maybe it is overwritten before being read?

warning: 22 warnings emitted