rust/src/test/ui/issues/issue-30079.stderr

32 lines
1.1 KiB
Plaintext
Raw Normal View History

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) {}
2018-07-15 16:11:54 -05:00
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(private_in_public)]` on by default
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>
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;
| - `m2::Priv` declared as private
LL | impl ::std::ops::Deref for ::SemiPriv {
2019-03-09 06:03:44 -06:00
LL | type Target = Priv;
2018-07-15 16:11:54 -05:00
| ^^^^^^^^^^^^^^^^^^^ can't leak private type
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;
| - `m3::Priv` declared as private
LL | impl ::SemiPrivTrait for () {
2019-03-09 06:03:44 -06:00
LL | type Assoc = Priv;
2018-07-15 16:11:54 -05:00
| ^^^^^^^^^^^^^^^^^^ can't leak private type
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`.