Skip to content

Commit 808f856

Browse files
committed
Blessing stderr from new UI tests added since last rebase
1 parent 33f31eb commit 808f856

File tree

3 files changed

+51
-14
lines changed

3 files changed

+51
-14
lines changed

src/test/ui/lint/dead-code/issue-85255.stderr

+47-12
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ warning: field is never read: `a`
22
--> $DIR/issue-85255.rs:8:5
33
|
44
LL | a: i32,
5-
| ^^^^^^
5+
| -^^^^^
6+
| |
7+
| help: if this is intentional, prefix it with an underscore: `_a`
68
|
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)
710
note: the lint level is defined here
811
--> $DIR/issue-85255.rs:4:9
912
|
@@ -14,67 +17,99 @@ warning: field is never read: `b`
1417
--> $DIR/issue-85255.rs:9:5
1518
|
1619
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)
1825

1926
warning: associated function is never used: `a`
2027
--> $DIR/issue-85255.rs:15:8
2128
|
2229
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.
2433

2534
warning: associated function is never used: `b`
2635
--> $DIR/issue-85255.rs:16:12
2736
|
2837
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.
3041

3142
warning: field is never read: `a`
3243
--> $DIR/issue-85255.rs:20:5
3344
|
3445
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)
3651

3752
warning: field is never read: `b`
3853
--> $DIR/issue-85255.rs:21:5
3954
|
4055
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)
4261

4362
warning: associated function is never used: `a`
4463
--> $DIR/issue-85255.rs:27:8
4564
|
4665
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.
4869

4970
warning: associated function is never used: `b`
5071
--> $DIR/issue-85255.rs:28:12
5172
|
5273
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.
5477

5578
warning: field is never read: `a`
5679
--> $DIR/issue-85255.rs:32:5
5780
|
5881
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)
6087

6188
warning: field is never read: `b`
6289
--> $DIR/issue-85255.rs:33:5
6390
|
6491
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)
6697

6798
warning: associated function is never used: `a`
6899
--> $DIR/issue-85255.rs:39:8
69100
|
70101
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.
72105

73106
warning: associated function is never used: `b`
74107
--> $DIR/issue-85255.rs:40:12
75108
|
76109
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.
78113

79114
warning: 12 warnings emitted
80115

src/test/ui/lint/force-warn/force-allowed-warning.stderr

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ warning: function is never used: `dead_function`
22
--> $DIR/force-allowed-warning.rs:6:4
33
|
44
LL | fn dead_function() {}
5-
| ^^^^^^^^^^^^^
5+
| ^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_dead_function`
66
|
7+
= note: the leading underscore signals that this function serves some other purpose even if it isn't used in a way that we can detect.
78
= note: warning forced by `force-warns` commandline option
89

910
warning: 1 warning emitted

src/test/ui/lint/force-warn/force-lint-allow-all-warnings.stderr

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ warning: function is never used: `dead_function`
22
--> $DIR/force-lint-allow-all-warnings.rs:6:4
33
|
44
LL | fn dead_function() {}
5-
| ^^^^^^^^^^^^^
5+
| ^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_dead_function`
66
|
7+
= note: the leading underscore signals that this function serves some other purpose even if it isn't used in a way that we can detect.
78
= note: warning forced by `force-warns` commandline option
89

910
warning: 1 warning emitted

0 commit comments

Comments
 (0)