rust/src/test/ui/privacy/private-in-public-lint.stderr

22 lines
661 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0446]: private type `m1::Priv` in public interface
2018-12-25 09:56:47 -06:00
--> $DIR/private-in-public-lint.rs:6:9
2018-08-08 07:28:26 -05:00
|
LL | struct Priv;
| - `m1::Priv` declared as private
...
2019-03-09 06:03:44 -06:00
LL | pub fn f() -> Priv {Priv}
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^ can't leak private type
error[E0446]: private type `m2::Priv` in public interface
2018-12-25 09:56:47 -06:00
--> $DIR/private-in-public-lint.rs:15:9
2018-08-08 07:28:26 -05:00
|
LL | struct Priv;
| - `m2::Priv` declared as private
...
2019-03-09 06:03:44 -06:00
LL | pub fn f() -> Priv {Priv}
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^ can't leak private type
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0446`.