2020-09-02 02:40:56 -05:00
|
|
|
error: type `OtherType` from private dependency 'priv_dep' in public interface
|
2021-11-03 22:00:00 -05:00
|
|
|
--> $DIR/pub-priv1.rs:21:5
|
2019-01-13 17:50:24 -06:00
|
|
|
|
|
|
|
|
LL | pub field: OtherType,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2021-11-03 22:00:00 -05:00
|
|
|
--> $DIR/pub-priv1.rs:4:9
|
2019-01-13 17:50:24 -06:00
|
|
|
|
|
2019-01-20 21:04:22 -06:00
|
|
|
LL | #![deny(exported_private_dependencies)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-01-13 17:50:24 -06:00
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
error: type `OtherType` from private dependency 'priv_dep' in public interface
|
2021-11-03 22:00:00 -05:00
|
|
|
--> $DIR/pub-priv1.rs:28:5
|
2019-01-13 17:50:24 -06:00
|
|
|
|
|
|
|
|
LL | pub fn pub_fn(param: OtherType) {}
|
2020-08-12 16:02:14 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-01-13 17:50:24 -06:00
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
error: trait `OtherTrait` from private dependency 'priv_dep' in public interface
|
2021-11-03 22:00:00 -05:00
|
|
|
--> $DIR/pub-priv1.rs:35:5
|
2019-01-13 19:37:27 -06:00
|
|
|
|
|
2020-06-27 15:36:35 -05:00
|
|
|
LL | type Foo: OtherTrait;
|
2022-02-13 09:27:59 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-01-13 19:37:27 -06:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2019-01-13 17:50:24 -06:00
|
|
|
|