summaryrefslogtreecommitdiffstats
path: root/src/test/ui/transmutability/visibility/should_accept_if_src_has_unreachable_field.stderr
blob: 39b73302e364d22145f4b1a188efb5e1f86504ef (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:22: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`.