Skip to content

Commit f92294f

Browse files
committed
bless
1 parent 2bcb018 commit f92294f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/ui/lint/dead-code/offset-of.stderr

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error: field `b` is never read
2-
--> $DIR/liveness-offset-of.rs:8:5
2+
--> $DIR/offset-of.rs:8:5
33
|
44
LL | struct Alpha {
55
| ----- field in this struct
@@ -8,29 +8,29 @@ LL | b: (),
88
| ^
99
|
1010
note: the lint level is defined here
11-
--> $DIR/liveness-offset-of.rs:2:9
11+
--> $DIR/offset-of.rs:2:9
1212
|
1313
LL | #![deny(dead_code)]
1414
| ^^^^^^^^^
1515

1616
error: field `a` is never read
17-
--> $DIR/liveness-offset-of.rs:13:5
17+
--> $DIR/offset-of.rs:13:5
1818
|
1919
LL | struct Beta {
2020
| ---- field in this struct
2121
LL | a: (),
2222
| ^
2323

2424
error: field `a` is never read
25-
--> $DIR/liveness-offset-of.rs:18:5
25+
--> $DIR/offset-of.rs:18:5
2626
|
2727
LL | struct Gamma {
2828
| ----- field in this struct
2929
LL | a: (),
3030
| ^
3131

3232
error: field `b` is never read
33-
--> $DIR/liveness-offset-of.rs:24:5
33+
--> $DIR/offset-of.rs:24:5
3434
|
3535
LL | struct Delta {
3636
| ----- field in this struct
@@ -39,7 +39,7 @@ LL | b: (),
3939
| ^
4040

4141
error: field `a` is never read
42-
--> $DIR/liveness-offset-of.rs:35:5
42+
--> $DIR/offset-of.rs:35:5
4343
|
4444
LL | struct Project<T: Trait> {
4545
| ------- field in this struct

0 commit comments

Comments
 (0)