rust/tests/ui/rename.stderr

19 lines
516 B
Plaintext
Raw Normal View History

2018-12-17 13:59:09 +01:00
error: unknown lint: `stutter`
--> $DIR/rename.rs:10:10
|
10 | #![allow(stutter)]
| ^^^^^^^
|
= note: `-D unknown-lints` implied by `-D warnings`
2018-12-17 14:29:19 +01:00
error: lint `clippy::stutter` has been renamed to `clippy::module_name_repetitions`
2018-12-17 13:59:09 +01:00
--> $DIR/rename.rs:12:8
|
12 | #[warn(clippy::stutter)]
2018-12-17 14:29:19 +01:00
| ^^^^^^^^^^^^^^^ help: use the new name: `clippy::module_name_repetitions`
2018-12-17 13:59:09 +01:00
|
= note: `-D renamed-and-removed-lints` implied by `-D warnings`
error: aborting due to 2 previous errors