summaryrefslogtreecommitdiffstats
path: root/src/test/ui/transmutability/visibility/should_accept_if_src_has_unreachable_field.stderr
blob: 3f7d08d0ae24857138a7b3ba8dda9121f5057c3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0446]: private type `src::Zst` in public interface
  --> $DIR/should_accept_if_src_has_unreachable_field.rs:23:9
   |
LL |     #[repr(C)] pub(self) struct Zst; // <- unreachable type
   |                -------------------- `src::Zst` declared as private
...
LL |         pub(in super) field: Zst,
   |         ^^^^^^^^^^^^^^^^^^^^^^^^ can't leak private type

error: aborting due to previous error

For more information about this error, try `rustc --explain E0446`.