pub static RENAMED_AND_REMOVED_LINTS: &Lint
Expand description
The renamed_and_removed_lints
lint detects lints that have been
renamed or removed.
§Example
#![deny(raw_pointer_derive)]
{{produces}}
§Explanation
To fix this, either remove the lint or use the new name. This can help avoid confusion about lints that are no longer valid, and help maintain consistency for renamed lints.