]> git.lizzy.rs Git - rust.git/blob - tests/ui/rename.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / rename.stderr
1 error: unknown lint: `stutter`
2   --> $DIR/rename.rs:10:10
3    |
4 LL | #![allow(stutter)]
5    |          ^^^^^^^
6    |
7    = note: `-D unknown-lints` implied by `-D warnings`
8
9 error: lint `clippy::stutter` has been renamed to `clippy::module_name_repetitions`
10   --> $DIR/rename.rs:12:8
11    |
12 LL | #[warn(clippy::stutter)]
13    |        ^^^^^^^^^^^^^^^ help: use the new name: `clippy::module_name_repetitions`
14    |
15    = note: `-D renamed-and-removed-lints` implied by `-D warnings`
16
17 error: lint `clippy::new_without_default_derive` has been renamed to `clippy::new_without_default`
18   --> $DIR/rename.rs:15:8
19    |
20 LL | #[warn(clippy::new_without_default_derive)]
21    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::new_without_default`
22
23 error: aborting due to 3 previous errors
24