rust-clippy/tests/ui/partial_pub_fields.stderr
TennyZhuang 7ac97b69fc Add new lint partial_pub_fields
Signed-off-by: TennyZhuang <zty0826@gmail.com>
2022-10-16 16:03:50 +08:00

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