]> git.lizzy.rs Git - rust.git/blob - src/test/ui/privacy/restricted/private-in-public.stderr
Fix font color for help button in ayu and dark themes
[rust.git] / src / test / ui / privacy / restricted / private-in-public.stderr
1 error[E0446]: private type `foo::Priv` in public interface
2   --> $DIR/private-in-public.rs:8:9
3    |
4 LL |     struct Priv;
5    |     - `foo::Priv` declared as private
6 ...
7 LL |         pub(crate) fn g(_: Priv) {}
8    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't leak private type
9
10 error[E0446]: private type `foo::Priv` in public interface
11   --> $DIR/private-in-public.rs:9:9
12    |
13 LL |     struct Priv;
14    |     - `foo::Priv` declared as private
15 ...
16 LL |         crate fn h(_: 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`.