| error: scoped visibility modifier on a field |
| --> tests/ui/field_scoped_visibility_modifiers.rs:9:9 |
| | |
| LL | pub(crate) pub_crate_field: bool, |
| | ^^^^^^^^^^ |
| | |
| = help: consider making the field private and adding a scoped visibility method for it |
| = note: `-D clippy::field-scoped-visibility-modifiers` implied by `-D warnings` |
| = help: to override `-D warnings` add `#[allow(clippy::field_scoped_visibility_modifiers)]` |
| |
| error: scoped visibility modifier on a field |
| --> tests/ui/field_scoped_visibility_modifiers.rs:11:9 |
| | |
| LL | pub(in crate::pub_module) pub_in_path_field: bool, |
| | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| | |
| = help: consider making the field private and adding a scoped visibility method for it |
| |
| error: scoped visibility modifier on a field |
| --> tests/ui/field_scoped_visibility_modifiers.rs:13:9 |
| | |
| LL | pub(super) pub_super_field: bool, |
| | ^^^^^^^^^^ |
| | |
| = help: consider making the field private and adding a scoped visibility method for it |
| |
| error: aborting due to 3 previous errors |
| |