File: unreachable_pub.stderr

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (250 lines) | stat: -rw-r--r-- 7,617 bytes parent folder | download | duplicates (4)
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:10:13
   |
LL |     pub use std::fmt;
   |     ---     ^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates
note: the lint level is defined here
  --> $DIR/unreachable_pub.rs:6:9
   |
LL | #![warn(unreachable_pub)]
   |         ^^^^^^^^^^^^^^^

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:11:24
   |
LL |     pub use std::env::{Args}; // braced-use has different item spans than unbraced
   |     ---                ^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:15:5
   |
LL |     pub struct Hydrogen {
   |     ---^^^^^^^^^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:26:9
   |
LL |         pub fn count_neutrons(&self) -> usize { self.neutrons }
   |         ---^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |         |
   |         help: consider restricting its visibility: `pub(crate)`

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:35:5
   |
LL |     pub enum Helium {}
   |     ---^^^^^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:36:5
   |
LL |     pub union Lithium { c1: usize, c2: u8 }
   |     ---^^^^^^^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:37:5
   |
LL |     pub fn beryllium() {}
   |     ---^^^^^^^^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:38:5
   |
LL |     pub trait Boron {}
   |     ---^^^^^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:39:5
   |
LL |     pub const CARBON: usize = 1;
   |     ---^^^^^^^^^^^^^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:40:5
   |
LL |     pub static NITROGEN: usize = 2;
   |     ---^^^^^^^^^^^^^^^^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:41:5
   |
LL |     pub type Oxygen = bool;
   |     ---^^^^^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:44:47
   |
LL |         ($visibility: vis, $name: ident) => { $visibility struct $name {} }
   |                                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL |     define_empty_struct_with_visibility!(pub, Fluorine);
   |     ---------------------------------------------------
   |     |                                    |
   |     |                                    help: consider restricting its visibility: `pub(crate)`
   |     in this macro invocation
   |
   = help: or consider exporting it for use by other crates
   = note: this warning originates in the macro `define_empty_struct_with_visibility` (in Nightly builds, run with -Z macro-backtrace for more info)

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:50:9
   |
LL |         pub fn catalyze() -> bool;
   |         ---^^^^^^^^^^^^^^^^^^^^^^^
   |         |
   |         help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:62:5
   |
LL |     pub mod pub_in_private {
   |     ---^^^^^^^^^^^^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:68:13
   |
LL |             pub struct Foo;
   |             ---^^^^^^^^^^^
   |             |
   |             help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:74:13
   |
LL |             pub struct Foo;
   |             ---^^^^^^^^^^^
   |             |
   |             help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:86:13
   |
LL |     pub use fpu_precision::set_precision;
   |     ---     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:54:9
   |
LL |         pub enum Helium {}
   |         ---^^^^^^^^^^^^
   |         |
   |         help: consider restricting its visibility: `pub(super)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:55:9
   |
LL |         pub fn beryllium() {}
   |         ---^^^^^^^^^^^^^^^
   |         |
   |         help: consider restricting its visibility: `pub(super)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:59:9
   |
LL |         pub const CARBON: usize = 1;
   |         ---^^^^^^^^^^^^^^^^^^^^
   |         |
   |         help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:63:9
   |
LL |         pub static NITROGEN: usize = 2;
   |         ---^^^^^^^^^^^^^^^^^^^^^^^
   |         |
   |         help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:77:17
   |
LL |                 pub struct Bar;
   |                 ---^^^^^^^^^^^
   |                 |
   |                 help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:89:9
   |
LL |         pub fn set_precision<T>() {}
   |         ---^^^^^^^^^^^^^^^^^^^^^^
   |         |
   |         help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:90:9
   |
LL |         pub fn set_micro_precision<T>() {}
   |         ---^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |         |
   |         help: consider restricting its visibility: `pub(super)`
   |
   = help: or consider exporting it for use by other crates

warning: 24 warnings emitted