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

22 lines
661 B
Plaintext
Raw Normal View History

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