summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/unreachable_pub.stderr
blob: e021f500c66ae4f308ae2d661f1fc40bb2661145 (plain)
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
warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:8:13
   |
LL |     pub use std::fmt;
   |     ---     ^^^^^^^^
   |     |
   |     help: consider restricting its visibility: `pub(crate)`
   |
note: the lint level is defined here
  --> $DIR/unreachable_pub.rs:4:9
   |
LL | #![warn(unreachable_pub)]
   |         ^^^^^^^^^^^^^^^
   = help: or consider exporting it for use by other crates

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:9: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:12: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` field
  --> $DIR/unreachable_pub.rs:14:9
   |
LL |         pub neutrons: usize,
   |         ---^^^^^^^^^^^^^^^^
   |         |
   |         help: consider restricting its visibility: `pub(crate)`

warning: unreachable `pub` item
  --> $DIR/unreachable_pub.rs:20: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:29: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:30: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:31: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:32: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:33: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:34: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:35: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:38: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:44:9
   |
LL |         pub fn catalyze() -> bool;
   |         ---^^^^^^^^^^^^^^^^^^^^^^
   |         |
   |         help: consider restricting its visibility: `pub(crate)`
   |
   = help: or consider exporting it for use by other crates

warning: 14 warnings emitted