You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/test/ui/lint/dead-code/issue-85255.stderr
+47-12
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,11 @@ warning: field is never read: `a`
2
2
--> $DIR/issue-85255.rs:8:5
3
3
|
4
4
LL | a: i32,
5
-
| ^^^^^^
5
+
| -^^^^^
6
+
| |
7
+
| help: if this is intentional, prefix it with an underscore: `_a`
6
8
|
9
+
= note: the leading underscore signals that this field serves some other purpose even if it isn't used in a way that we can detect. (e.g. for its effect when dropped or in foreign code)
7
10
note: the lint level is defined here
8
11
--> $DIR/issue-85255.rs:4:9
9
12
|
@@ -14,67 +17,99 @@ warning: field is never read: `b`
14
17
--> $DIR/issue-85255.rs:9:5
15
18
|
16
19
LL | pub b: i32,
17
-
| ^^^^^^^^^^
20
+
| ^^^^-^^^^^
21
+
| |
22
+
| help: if this is intentional, prefix it with an underscore: `_b`
23
+
|
24
+
= note: the leading underscore signals that this field serves some other purpose even if it isn't used in a way that we can detect. (e.g. for its effect when dropped or in foreign code)
18
25
19
26
warning: associated function is never used: `a`
20
27
--> $DIR/issue-85255.rs:15:8
21
28
|
22
29
LL | fn a(&self) -> i32 { 5 }
23
-
| ^
30
+
| ^ help: if this is intentional, prefix it with an underscore: `_a`
31
+
|
32
+
= note: the leading underscore signals that this associated function serves some other purpose even if it isn't used in a way that we can detect.
24
33
25
34
warning: associated function is never used: `b`
26
35
--> $DIR/issue-85255.rs:16:12
27
36
|
28
37
LL | pub fn b(&self) -> i32 { 6 }
29
-
| ^
38
+
| ^ help: if this is intentional, prefix it with an underscore: `_b`
39
+
|
40
+
= note: the leading underscore signals that this associated function serves some other purpose even if it isn't used in a way that we can detect.
30
41
31
42
warning: field is never read: `a`
32
43
--> $DIR/issue-85255.rs:20:5
33
44
|
34
45
LL | a: i32,
35
-
| ^^^^^^
46
+
| -^^^^^
47
+
| |
48
+
| help: if this is intentional, prefix it with an underscore: `_a`
49
+
|
50
+
= note: the leading underscore signals that this field serves some other purpose even if it isn't used in a way that we can detect. (e.g. for its effect when dropped or in foreign code)
36
51
37
52
warning: field is never read: `b`
38
53
--> $DIR/issue-85255.rs:21:5
39
54
|
40
55
LL | pub b: i32,
41
-
| ^^^^^^^^^^
56
+
| ^^^^-^^^^^
57
+
| |
58
+
| help: if this is intentional, prefix it with an underscore: `_b`
59
+
|
60
+
= note: the leading underscore signals that this field serves some other purpose even if it isn't used in a way that we can detect. (e.g. for its effect when dropped or in foreign code)
42
61
43
62
warning: associated function is never used: `a`
44
63
--> $DIR/issue-85255.rs:27:8
45
64
|
46
65
LL | fn a(&self) -> i32 { 5 }
47
-
| ^
66
+
| ^ help: if this is intentional, prefix it with an underscore: `_a`
67
+
|
68
+
= note: the leading underscore signals that this associated function serves some other purpose even if it isn't used in a way that we can detect.
48
69
49
70
warning: associated function is never used: `b`
50
71
--> $DIR/issue-85255.rs:28:12
51
72
|
52
73
LL | pub fn b(&self) -> i32 { 6 }
53
-
| ^
74
+
| ^ help: if this is intentional, prefix it with an underscore: `_b`
75
+
|
76
+
= note: the leading underscore signals that this associated function serves some other purpose even if it isn't used in a way that we can detect.
54
77
55
78
warning: field is never read: `a`
56
79
--> $DIR/issue-85255.rs:32:5
57
80
|
58
81
LL | a: i32,
59
-
| ^^^^^^
82
+
| -^^^^^
83
+
| |
84
+
| help: if this is intentional, prefix it with an underscore: `_a`
85
+
|
86
+
= note: the leading underscore signals that this field serves some other purpose even if it isn't used in a way that we can detect. (e.g. for its effect when dropped or in foreign code)
60
87
61
88
warning: field is never read: `b`
62
89
--> $DIR/issue-85255.rs:33:5
63
90
|
64
91
LL | pub b: i32,
65
-
| ^^^^^^^^^^
92
+
| ^^^^-^^^^^
93
+
| |
94
+
| help: if this is intentional, prefix it with an underscore: `_b`
95
+
|
96
+
= note: the leading underscore signals that this field serves some other purpose even if it isn't used in a way that we can detect. (e.g. for its effect when dropped or in foreign code)
66
97
67
98
warning: associated function is never used: `a`
68
99
--> $DIR/issue-85255.rs:39:8
69
100
|
70
101
LL | fn a(&self) -> i32 { 5 }
71
-
| ^
102
+
| ^ help: if this is intentional, prefix it with an underscore: `_a`
103
+
|
104
+
= note: the leading underscore signals that this associated function serves some other purpose even if it isn't used in a way that we can detect.
72
105
73
106
warning: associated function is never used: `b`
74
107
--> $DIR/issue-85255.rs:40:12
75
108
|
76
109
LL | pub fn b(&self) -> i32 { 6 }
77
-
| ^
110
+
| ^ help: if this is intentional, prefix it with an underscore: `_b`
111
+
|
112
+
= note: the leading underscore signals that this associated function serves some other purpose even if it isn't used in a way that we can detect.
0 commit comments