]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-30079.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-30079.stderr
1 warning: private type `m1::Priv` in public interface (error E0446)
2   --> $DIR/issue-30079.rs:16:9
3    |
4 LL |         pub fn f(_: Priv) {} //~ WARN private type `m1::Priv` in public interface
5    |         ^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: #[warn(private_in_public)] on by default
8    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
9    = note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
10
11 error[E0446]: private type `m2::Priv` in public interface
12   --> $DIR/issue-30079.rs:28:9
13    |
14 LL |     struct Priv;
15    |     - `m2::Priv` declared as private
16 LL |     impl ::std::ops::Deref for ::SemiPriv {
17 LL |         type Target = Priv; //~ ERROR private type `m2::Priv` in public interface
18    |         ^^^^^^^^^^^^^^^^^^^ can't leak private type
19
20 error[E0446]: private type `m3::Priv` in public interface
21   --> $DIR/issue-30079.rs:45:9
22    |
23 LL |     struct Priv;
24    |     - `m3::Priv` declared as private
25 LL |     impl ::SemiPrivTrait for () {
26 LL |         type Assoc = Priv; //~ ERROR private type `m3::Priv` in public interface
27    |         ^^^^^^^^^^^^^^^^^^ can't leak private type
28
29 error: aborting due to 2 previous errors
30
31 For more information about this error, try `rustc --explain E0446`.