]> git.lizzy.rs Git - rust.git/blob - tests/ui/privacy/private-in-public-lint.stderr
Auto merge of #106780 - flip1995:clippyup, r=Manishearth
[rust.git] / tests / ui / privacy / private-in-public-lint.stderr
1 error[E0446]: private type `m1::Priv` in public interface
2   --> $DIR/private-in-public-lint.rs:6:9
3    |
4 LL |     struct Priv;
5    |     ----------- `m1::Priv` declared as private
6 ...
7 LL |         pub fn f() -> Priv {Priv}
8    |         ^^^^^^^^^^^^^^^^^^ can't leak private type
9
10 error[E0446]: private type `m2::Priv` in public interface
11   --> $DIR/private-in-public-lint.rs:15:9
12    |
13 LL |     struct Priv;
14    |     ----------- `m2::Priv` declared as private
15 ...
16 LL |         pub fn f() -> Priv {Priv}
17    |         ^^^^^^^^^^^^^^^^^^ can't leak private type
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0446`.