mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 23:06:23 +00:00
20 lines
485 B
Plaintext
20 lines
485 B
Plaintext
|
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
|
||
|
|