mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 23:20:39 +00:00
7ac97b69fc
Signed-off-by: TennyZhuang <zty0826@gmail.com>
19 lines
485 B
Text
19 lines
485 B
Text
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
|
|
|