2018-07-15 16:11:54 -05:00
|
|
|
warning: private type `m1::Priv` in public interface (error E0446)
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-30079.rs:6:9
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | pub fn f(_: Priv) {}
|
2020-08-12 16:02:14 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
2022-09-18 10:55:36 -05:00
|
|
|
= note: `#[warn(private_in_public)]` on by default
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error[E0446]: private type `m2::Priv` in public interface
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-30079.rs:18:9
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | struct Priv;
|
2022-02-13 09:27:59 -06:00
|
|
|
| ----------- `m2::Priv` declared as private
|
2018-07-15 16:11:54 -05:00
|
|
|
LL | impl ::std::ops::Deref for ::SemiPriv {
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | type Target = Priv;
|
2022-02-13 09:27:59 -06:00
|
|
|
| ^^^^^^^^^^^ can't leak private type
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error[E0446]: private type `m3::Priv` in public interface
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-30079.rs:35:9
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | struct Priv;
|
2022-02-13 09:27:59 -06:00
|
|
|
| ----------- `m3::Priv` declared as private
|
2018-07-15 16:11:54 -05:00
|
|
|
LL | impl ::SemiPrivTrait for () {
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | type Assoc = Priv;
|
2022-02-13 09:27:59 -06:00
|
|
|
| ^^^^^^^^^^ can't leak private type
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2020-03-11 10:30:09 -05:00
|
|
|
error: aborting due to 2 previous errors; 1 warning emitted
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0446`.
|