1
1
warning: unreachable statement
2
- --> $DIR/liveness-unused.rs:92 :9
2
+ --> $DIR/liveness-unused.rs:93 :9
3
3
|
4
4
LL | continue;
5
5
| -------- any code following this expression is unreachable
@@ -14,7 +14,7 @@ LL | #![warn(unused)]
14
14
= note: `#[warn(unreachable_code)]` implied by `#[warn(unused)]`
15
15
16
16
error: unused variable: `x`
17
- --> $DIR/liveness-unused.rs:8 :7
17
+ --> $DIR/liveness-unused.rs:9 :7
18
18
|
19
19
LL | fn f1(x: isize) {
20
20
| ^ help: if this is intentional, prefix it with an underscore: `_x`
@@ -26,33 +26,33 @@ LL | #![deny(unused_variables)]
26
26
| ^^^^^^^^^^^^^^^^
27
27
28
28
error: unused variable: `x`
29
- --> $DIR/liveness-unused.rs:12 :8
29
+ --> $DIR/liveness-unused.rs:13 :8
30
30
|
31
31
LL | fn f1b(x: &mut isize) {
32
32
| ^ help: if this is intentional, prefix it with an underscore: `_x`
33
33
34
34
error: unused variable: `x`
35
- --> $DIR/liveness-unused.rs:20 :9
35
+ --> $DIR/liveness-unused.rs:21 :9
36
36
|
37
37
LL | let x: isize;
38
38
| ^ help: if this is intentional, prefix it with an underscore: `_x`
39
39
40
40
error: unused variable: `x`
41
- --> $DIR/liveness-unused.rs:25 :9
41
+ --> $DIR/liveness-unused.rs:26 :9
42
42
|
43
43
LL | let x = 3;
44
44
| ^ help: if this is intentional, prefix it with an underscore: `_x`
45
45
46
46
error: variable `x` is assigned to, but never used
47
- --> $DIR/liveness-unused.rs:30 :13
47
+ --> $DIR/liveness-unused.rs:31 :13
48
48
|
49
49
LL | let mut x = 3;
50
50
| ^
51
51
|
52
52
= note: consider using `_x` instead
53
53
54
54
error: value assigned to `x` is never read
55
- --> $DIR/liveness-unused.rs:32 :5
55
+ --> $DIR/liveness-unused.rs:33 :5
56
56
|
57
57
LL | x += 4;
58
58
| ^
@@ -65,47 +65,47 @@ LL | #![deny(unused_assignments)]
65
65
| ^^^^^^^^^^^^^^^^^^
66
66
67
67
error: variable `z` is assigned to, but never used
68
- --> $DIR/liveness-unused.rs:37 :13
68
+ --> $DIR/liveness-unused.rs:38 :13
69
69
|
70
70
LL | let mut z = 3;
71
71
| ^
72
72
|
73
73
= note: consider using `_z` instead
74
74
75
75
error: unused variable: `i`
76
- --> $DIR/liveness-unused.rs:59 :12
76
+ --> $DIR/liveness-unused.rs:60 :12
77
77
|
78
78
LL | Some(i) => {
79
79
| ^ help: if this is intentional, prefix it with an underscore: `_i`
80
80
81
81
error: unused variable: `x`
82
- --> $DIR/liveness-unused.rs:79 :9
82
+ --> $DIR/liveness-unused.rs:80 :9
83
83
|
84
84
LL | for x in 1..10 { }
85
85
| ^ help: if this is intentional, prefix it with an underscore: `_x`
86
86
87
87
error: unused variable: `x`
88
- --> $DIR/liveness-unused.rs:84 :10
88
+ --> $DIR/liveness-unused.rs:85 :10
89
89
|
90
90
LL | for (x, _) in [1, 2, 3].iter().enumerate() { }
91
91
| ^ help: if this is intentional, prefix it with an underscore: `_x`
92
92
93
93
error: unused variable: `x`
94
- --> $DIR/liveness-unused.rs:89 :13
94
+ --> $DIR/liveness-unused.rs:90 :13
95
95
|
96
96
LL | for (_, x) in [1, 2, 3].iter().enumerate() {
97
97
| ^ help: if this is intentional, prefix it with an underscore: `_x`
98
98
99
99
error: variable `x` is assigned to, but never used
100
- --> $DIR/liveness-unused.rs:112 :9
100
+ --> $DIR/liveness-unused.rs:113 :9
101
101
|
102
102
LL | let x;
103
103
| ^
104
104
|
105
105
= note: consider using `_x` instead
106
106
107
107
error: value assigned to `x` is never read
108
- --> $DIR/liveness-unused.rs:116 :9
108
+ --> $DIR/liveness-unused.rs:117 :9
109
109
|
110
110
LL | x = 0;
111
111
| ^
0 commit comments