File tree 2 files changed +20
-2
lines changed
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -30,5 +30,11 @@ error: lint `misaligned_transmute` has been removed: `this lint has been split i
30
30
LL | #[warn(misaligned_transmute)]
31
31
| ^^^^^^^^^^^^^^^^^^^^
32
32
33
- error: aborting due to 5 previous errors
33
+ error: lint `str_to_string` has been removed: `using `str::to_string` is common even today and specialization will likely happen soon`
34
+ --> $DIR/deprecated.rs:1:8
35
+ |
36
+ LL | #[warn(str_to_string)]
37
+ | ^^^^^^^^^^^^^
38
+
39
+ error: aborting due to 6 previous errors
34
40
Original file line number Diff line number Diff line change @@ -20,5 +20,17 @@ error: lint `clippy::new_without_default_derive` has been renamed to `clippy::ne
20
20
LL | #[warn(clippy::new_without_default_derive)]
21
21
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::new_without_default`
22
22
23
- error: aborting due to 3 previous errors
23
+ error: unknown lint: `stutter`
24
+ --> $DIR/rename.rs:1:10
25
+ |
26
+ LL | #![allow(stutter)]
27
+ | ^^^^^^^
28
+
29
+ error: lint `clippy::stutter` has been renamed to `clippy::module_name_repetitions`
30
+ --> $DIR/rename.rs:3:8
31
+ |
32
+ LL | #[warn(clippy::stutter)]
33
+ | ^^^^^^^^^^^^^^^ help: use the new name: `clippy::module_name_repetitions`
34
+
35
+ error: aborting due to 5 previous errors
24
36
You can’t perform that action at this time.
0 commit comments