]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lint/unreachable_pub.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / lint / unreachable_pub.stderr
1 warning: unreachable `pub` item
2 --> $DIR/unreachable_pub.rs:10:5
3 |
4 LL | pub use std::fmt;
5 | ---^^^^^^^^^^^^^^
6 | |
7 | help: consider restricting its visibility: `crate`
8 |
9 note: lint level defined here
10 --> $DIR/unreachable_pub.rs:6:9
11 |
12 LL | #![warn(unreachable_pub)]
13 | ^^^^^^^^^^^^^^^
14 = help: or consider exporting it for use by other crates
15
16 warning: unreachable `pub` item
17 --> $DIR/unreachable_pub.rs:11:24
18 |
19 LL | pub use std::env::{Args}; // braced-use has different item spans than unbraced
20 | --- ^^^^
21 | |
22 | help: consider restricting its visibility: `crate`
23 |
24 = help: or consider exporting it for use by other crates
25
26 warning: unreachable `pub` item
27 --> $DIR/unreachable_pub.rs:14:5
28 |
29 LL | pub struct Hydrogen {
30 | ---^^^^^^^^^^^^^^^^
31 | |
32 | help: consider restricting its visibility: `crate`
33 |
34 = help: or consider exporting it for use by other crates
35
36 warning: unreachable `pub` field
37 --> $DIR/unreachable_pub.rs:16:9
38 |
39 LL | pub neutrons: usize,
40 | ---^^^^^^^^^^^^^^^^
41 | |
42 | help: consider restricting its visibility: `crate`
43
44 warning: unreachable `pub` item
45 --> $DIR/unreachable_pub.rs:22:9
46 |
47 LL | pub fn count_neutrons(&self) -> usize { self.neutrons }
48 | ---^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
49 | |
50 | help: consider restricting its visibility: `crate`
51
52 warning: unreachable `pub` item
53 --> $DIR/unreachable_pub.rs:26:5
54 |
55 LL | pub enum Helium {}
56 | ---^^^^^^^^^^^^
57 | |
58 | help: consider restricting its visibility: `crate`
59 |
60 = help: or consider exporting it for use by other crates
61
62 warning: unreachable `pub` item
63 --> $DIR/unreachable_pub.rs:27:5
64 |
65 LL | pub union Lithium { c1: usize, c2: u8 }
66 | ---^^^^^^^^^^^^^^
67 | |
68 | help: consider restricting its visibility: `crate`
69 |
70 = help: or consider exporting it for use by other crates
71
72 warning: unreachable `pub` item
73 --> $DIR/unreachable_pub.rs:28:5
74 |
75 LL | pub fn beryllium() {}
76 | ---^^^^^^^^^^^^^^^
77 | |
78 | help: consider restricting its visibility: `crate`
79 |
80 = help: or consider exporting it for use by other crates
81
82 warning: unreachable `pub` item
83 --> $DIR/unreachable_pub.rs:29:5
84 |
85 LL | pub trait Boron {}
86 | ---^^^^^^^^^^^^
87 | |
88 | help: consider restricting its visibility: `crate`
89 |
90 = help: or consider exporting it for use by other crates
91
92 warning: unreachable `pub` item
93 --> $DIR/unreachable_pub.rs:30:5
94 |
95 LL | pub const CARBON: usize = 1;
96 | ---^^^^^^^^^^^^^^^^^^^^^^^^^
97 | |
98 | help: consider restricting its visibility: `crate`
99 |
100 = help: or consider exporting it for use by other crates
101
102 warning: unreachable `pub` item
103 --> $DIR/unreachable_pub.rs:31:5
104 |
105 LL | pub static NITROGEN: usize = 2;
106 | ---^^^^^^^^^^^^^^^^^^^^^^^^^^^^
107 | |
108 | help: consider restricting its visibility: `crate`
109 |
110 = help: or consider exporting it for use by other crates
111
112 warning: unreachable `pub` item
113 --> $DIR/unreachable_pub.rs:32:5
114 |
115 LL | pub type Oxygen = bool;
116 | ---^^^^^^^^^^^^^^^^^^^^
117 | |
118 | help: consider restricting its visibility: `crate`
119 |
120 = help: or consider exporting it for use by other crates
121
122 warning: unreachable `pub` item
123 --> $DIR/unreachable_pub.rs:35:47
124 |
125 LL | ($visibility: vis, $name: ident) => { $visibility struct $name {} }
126 | ^^^^^^^^^^^^^^^^^^^^^^^^
127 ...
128 LL | define_empty_struct_with_visibility!(pub, Fluorine);
129 | ----------------------------------------------------
130 | | |
131 | | help: consider restricting its visibility: `crate`
132 | in this macro invocation
133 |
134 = help: or consider exporting it for use by other crates
135
136 warning: unreachable `pub` item
137 --> $DIR/unreachable_pub.rs:41:9
138 |
139 LL | pub fn catalyze() -> bool;
140 | ---^^^^^^^^^^^^^^^^^^^^^^^
141 | |
142 | help: consider restricting its visibility: `crate`
143 |
144 = help: or consider exporting it for use by other crates
145