mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
18 lines
516 B
Text
18 lines
516 B
Text
error: unknown lint: `stutter`
|
|
--> $DIR/rename.rs:10:10
|
|
|
|
|
10 | #![allow(stutter)]
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D unknown-lints` implied by `-D warnings`
|
|
|
|
error: lint `clippy::stutter` has been renamed to `clippy::module_name_repetitions`
|
|
--> $DIR/rename.rs:12:8
|
|
|
|
|
12 | #[warn(clippy::stutter)]
|
|
| ^^^^^^^^^^^^^^^ help: use the new name: `clippy::module_name_repetitions`
|
|
|
|
|
= note: `-D renamed-and-removed-lints` implied by `-D warnings`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|