mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
abb40c965f
- Don't add backticks for the reason a lint was removed. This is almost never a code block, and when it is the backticks should be in the reason itself. - Don't assume clippy is the only tool that needs to be checked for backwards compatibility
28 lines
946 B
Text
28 lines
946 B
Text
error: lint `unstable_as_slice` has been removed: `Vec::as_slice` has been stabilized in 1.7
|
|
--> $DIR/deprecated_old.rs:1:8
|
|
|
|
|
LL | #[warn(unstable_as_slice)]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D renamed-and-removed-lints` implied by `-D warnings`
|
|
|
|
error: lint `unstable_as_mut_slice` has been removed: `Vec::as_mut_slice` has been stabilized in 1.7
|
|
--> $DIR/deprecated_old.rs:2:8
|
|
|
|
|
LL | #[warn(unstable_as_mut_slice)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: lint `misaligned_transmute` has been removed: this lint has been split into cast_ptr_alignment and transmute_ptr_to_ptr
|
|
--> $DIR/deprecated_old.rs:3:8
|
|
|
|
|
LL | #[warn(misaligned_transmute)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: lint `unstable_as_slice` has been removed: `Vec::as_slice` has been stabilized in 1.7
|
|
--> $DIR/deprecated_old.rs:1:8
|
|
|
|
|
LL | #[warn(unstable_as_slice)]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|