pub static PATH_STATEMENTS: &Lint
The path_statements lint detects path statements with no effect.
path_statements
let x = 42; x;
{{produces}}
It is usually a mistake to have a statement that has no effect.