rust/tests/ui/partial_pub_fields.stderr

20 lines
485 B
Plaintext
Raw Normal View History

error: mixed usage of pub and non-pub fields
--> $DIR/partial_pub_fields.rs:12:9
|
LL | pub paths: HashMap<u32, String>,
| ^^^
|
= help: consider using private field here
= note: `-D clippy::partial-pub-fields` implied by `-D warnings`
error: mixed usage of pub and non-pub fields
--> $DIR/partial_pub_fields.rs:18:9
|
LL | b: u8,
| ^
|
= help: consider using public field here
error: aborting due to 2 previous errors