]> git.lizzy.rs Git - rust.git/blob - src/test/ui/privacy/private-in-public-warn.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / privacy / private-in-public-warn.stderr
1 error: private type `types::Priv` in public interface (error E0446)
2   --> $DIR/private-in-public-warn.rs:25:5
3    |
4 LL |     pub type Alias = Priv; //~ ERROR private type `types::Priv` in public interface
5    |     ^^^^^^^^^^^^^^^^^^^^^^
6    |
7 note: lint level defined here
8   --> $DIR/private-in-public-warn.rs:15:9
9    |
10 LL | #![deny(private_in_public)]
11    |         ^^^^^^^^^^^^^^^^^
12    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
13    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
14
15 error: private type `types::Priv` in public interface (error E0446)
16   --> $DIR/private-in-public-warn.rs:28:12
17    |
18 LL |         V1(Priv), //~ ERROR private type `types::Priv` in public interface
19    |            ^^^^
20    |
21    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
22    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
23
24 error: private type `types::Priv` in public interface (error E0446)
25   --> $DIR/private-in-public-warn.rs:30:14
26    |
27 LL |         V2 { field: Priv }, //~ ERROR private type `types::Priv` in public interface
28    |              ^^^^^^^^^^^
29    |
30    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
31    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
32
33 error: private type `types::Priv` in public interface (error E0446)
34   --> $DIR/private-in-public-warn.rs:34:9
35    |
36 LL |         const C: Priv = Priv; //~ ERROR private type `types::Priv` in public interface
37    |         ^^^^^^^^^^^^^^^^^^^^^
38    |
39    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
40    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
41
42 error[E0446]: private type `types::Priv` in public interface
43   --> $DIR/private-in-public-warn.rs:36:9
44    |
45 LL |     struct Priv;
46    |     - `types::Priv` declared as private
47 ...
48 LL |         type Alias = Priv; //~ ERROR private type `types::Priv` in public interface
49    |         ^^^^^^^^^^^^^^^^^^ can't leak private type
50
51 error: private type `types::Priv` in public interface (error E0446)
52   --> $DIR/private-in-public-warn.rs:37:9
53    |
54 LL |         fn f1(arg: Priv) {} //~ ERROR private type `types::Priv` in public interface
55    |         ^^^^^^^^^^^^^^^^^^^
56    |
57    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
58    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
59
60 error: private type `types::Priv` in public interface (error E0446)
61   --> $DIR/private-in-public-warn.rs:39:9
62    |
63 LL |         fn f2() -> Priv { panic!() } //~ ERROR private type `types::Priv` in public interface
64    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
65    |
66    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
67    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
68
69 error: private type `types::Priv` in public interface (error E0446)
70   --> $DIR/private-in-public-warn.rs:43:9
71    |
72 LL |         pub static ES: Priv; //~ ERROR private type `types::Priv` in public interface
73    |         ^^^^^^^^^^^^^^^^^^^^
74    |
75    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
76    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
77
78 error: private type `types::Priv` in public interface (error E0446)
79   --> $DIR/private-in-public-warn.rs:45:9
80    |
81 LL |         pub fn ef1(arg: Priv); //~ ERROR private type `types::Priv` in public interface
82    |         ^^^^^^^^^^^^^^^^^^^^^^
83    |
84    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
85    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
86
87 error: private type `types::Priv` in public interface (error E0446)
88   --> $DIR/private-in-public-warn.rs:47:9
89    |
90 LL |         pub fn ef2() -> Priv; //~ ERROR private type `types::Priv` in public interface
91    |         ^^^^^^^^^^^^^^^^^^^^^
92    |
93    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
94    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
95
96 error[E0446]: private type `types::Priv` in public interface
97   --> $DIR/private-in-public-warn.rs:51:9
98    |
99 LL |     struct Priv;
100    |     - `types::Priv` declared as private
101 ...
102 LL |         type Alias = Priv; //~ ERROR private type `types::Priv` in public interface
103    |         ^^^^^^^^^^^^^^^^^^ can't leak private type
104
105 error: private trait `traits::PrivTr` in public interface (error E0445)
106   --> $DIR/private-in-public-warn.rs:60:5
107    |
108 LL |     pub type Alias<T: PrivTr> = T; //~ ERROR private trait `traits::PrivTr` in public interface
109    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
110    |
111    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
112    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
113
114 error: private trait `traits::PrivTr` in public interface (error E0445)
115   --> $DIR/private-in-public-warn.rs:62:5
116    |
117 LL |     pub trait Tr1: PrivTr {} //~ ERROR private trait `traits::PrivTr` in public interface
118    |     ^^^^^^^^^^^^^^^^^^^^^^^^
119    |
120    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
121    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
122
123 error: private trait `traits::PrivTr` in public interface (error E0445)
124   --> $DIR/private-in-public-warn.rs:64:5
125    |
126 LL |     pub trait Tr2<T: PrivTr> {} //~ ERROR private trait `traits::PrivTr` in public interface
127    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
128    |
129    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
130    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
131
132 error: private trait `traits::PrivTr` in public interface (error E0445)
133   --> $DIR/private-in-public-warn.rs:66:5
134    |
135 LL | /     pub trait Tr3 {
136 LL | |         //~^ ERROR private trait `traits::PrivTr` in public interface
137 LL | |         //~| WARNING hard error
138 LL | |         type Alias: PrivTr;
139 LL | |         fn f<T: PrivTr>(arg: T) {} //~ ERROR private trait `traits::PrivTr` in public interface
140 LL | |         //~^ WARNING hard error
141 LL | |     }
142    | |_____^
143    |
144    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
145    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
146
147 error: private trait `traits::PrivTr` in public interface (error E0445)
148   --> $DIR/private-in-public-warn.rs:70:9
149    |
150 LL |         fn f<T: PrivTr>(arg: T) {} //~ ERROR private trait `traits::PrivTr` in public interface
151    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
152    |
153    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
154    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
155
156 error: private trait `traits::PrivTr` in public interface (error E0445)
157   --> $DIR/private-in-public-warn.rs:73:5
158    |
159 LL |     impl<T: PrivTr> Pub<T> {} //~ ERROR private trait `traits::PrivTr` in public interface
160    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
161    |
162    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
163    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
164
165 error: private trait `traits::PrivTr` in public interface (error E0445)
166   --> $DIR/private-in-public-warn.rs:75:5
167    |
168 LL |     impl<T: PrivTr> PubTr for Pub<T> {} //~ ERROR private trait `traits::PrivTr` in public interface
169    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
170    |
171    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
172    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
173
174 error: private trait `traits_where::PrivTr` in public interface (error E0445)
175   --> $DIR/private-in-public-warn.rs:84:5
176    |
177 LL |     pub type Alias<T> where T: PrivTr = T;
178    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
179    |
180    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
181    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
182
183 error: private trait `traits_where::PrivTr` in public interface (error E0445)
184   --> $DIR/private-in-public-warn.rs:87:5
185    |
186 LL |     pub trait Tr2<T> where T: PrivTr {}
187    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
188    |
189    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
190    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
191
192 error: private trait `traits_where::PrivTr` in public interface (error E0445)
193   --> $DIR/private-in-public-warn.rs:91:9
194    |
195 LL |         fn f<T>(arg: T) where T: PrivTr {}
196    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
197    |
198    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
199    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
200
201 error: private trait `traits_where::PrivTr` in public interface (error E0445)
202   --> $DIR/private-in-public-warn.rs:95:5
203    |
204 LL |     impl<T> Pub<T> where T: PrivTr {}
205    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
206    |
207    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
208    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
209
210 error: private trait `traits_where::PrivTr` in public interface (error E0445)
211   --> $DIR/private-in-public-warn.rs:98:5
212    |
213 LL |     impl<T> PubTr for Pub<T> where T: PrivTr {}
214    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
215    |
216    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
217    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
218
219 error: private trait `generics::PrivTr<generics::Pub>` in public interface (error E0445)
220   --> $DIR/private-in-public-warn.rs:109:5
221    |
222 LL |     pub trait Tr1: PrivTr<Pub> {}
223    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
224    |
225    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
226    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
227
228 error: private type `generics::Priv` in public interface (error E0446)
229   --> $DIR/private-in-public-warn.rs:112:5
230    |
231 LL |     pub trait Tr2: PubTr<Priv> {} //~ ERROR private type `generics::Priv` in public interface
232    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
233    |
234    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
235    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
236
237 error: private type `generics::Priv` in public interface (error E0446)
238   --> $DIR/private-in-public-warn.rs:114:5
239    |
240 LL |     pub trait Tr3: PubTr<[Priv; 1]> {} //~ ERROR private type `generics::Priv` in public interface
241    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
242    |
243    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
244    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
245
246 error: private type `generics::Priv` in public interface (error E0446)
247   --> $DIR/private-in-public-warn.rs:116:5
248    |
249 LL |     pub trait Tr4: PubTr<Pub<Priv>> {} //~ ERROR private type `generics::Priv` in public interface
250    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
251    |
252    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
253    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
254
255 error[E0446]: private type `impls::Priv` in public interface
256   --> $DIR/private-in-public-warn.rs:143:9
257    |
258 LL |     struct Priv;
259    |     - `impls::Priv` declared as private
260 ...
261 LL |         type Alias = Priv; //~ ERROR private type `impls::Priv` in public interface
262    |         ^^^^^^^^^^^^^^^^^^ can't leak private type
263
264 error: private type `aliases_pub::Priv` in public interface (error E0446)
265   --> $DIR/private-in-public-warn.rs:214:9
266    |
267 LL |         pub fn f(arg: Priv) {} //~ ERROR private type `aliases_pub::Priv` in public interface
268    |         ^^^^^^^^^^^^^^^^^^^^^^
269    |
270    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
271    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
272
273 error[E0446]: private type `aliases_pub::Priv` in public interface
274   --> $DIR/private-in-public-warn.rs:218:9
275    |
276 LL |     struct Priv;
277    |     - `aliases_pub::Priv` declared as private
278 ...
279 LL |         type Check = Priv; //~ ERROR private type `aliases_pub::Priv` in public interface
280    |         ^^^^^^^^^^^^^^^^^^ can't leak private type
281
282 error[E0446]: private type `aliases_pub::Priv` in public interface
283   --> $DIR/private-in-public-warn.rs:221:9
284    |
285 LL |     struct Priv;
286    |     - `aliases_pub::Priv` declared as private
287 ...
288 LL |         type Check = Priv; //~ ERROR private type `aliases_pub::Priv` in public interface
289    |         ^^^^^^^^^^^^^^^^^^ can't leak private type
290
291 error[E0446]: private type `aliases_pub::Priv` in public interface
292   --> $DIR/private-in-public-warn.rs:224:9
293    |
294 LL |     struct Priv;
295    |     - `aliases_pub::Priv` declared as private
296 ...
297 LL |         type Check = Priv; //~ ERROR private type `aliases_pub::Priv` in public interface
298    |         ^^^^^^^^^^^^^^^^^^ can't leak private type
299
300 error: private trait `aliases_priv::PrivTr1` in public interface (error E0445)
301   --> $DIR/private-in-public-warn.rs:248:5
302    |
303 LL |     pub trait Tr1: PrivUseAliasTr {}
304    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
305    |
306    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
307    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
308
309 error: private type `aliases_priv::Priv2` in public interface (error E0446)
310   --> $DIR/private-in-public-warn.rs:251:5
311    |
312 LL |     pub trait Tr2: PrivUseAliasTr<PrivAlias> {}
313    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
314    |
315    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
316    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
317
318 error: private trait `aliases_priv::PrivTr1<aliases_priv::Priv2>` in public interface (error E0445)
319   --> $DIR/private-in-public-warn.rs:251:5
320    |
321 LL |     pub trait Tr2: PrivUseAliasTr<PrivAlias> {}
322    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
323    |
324    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
325    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
326
327 error: aborting due to 35 previous errors
328
329 For more information about this error, try `rustc --explain E0446`.