rust/tests/ui/deprecated_old.stderr

24 lines
843 B
Plaintext
Raw Normal View History

error: lint `unstable_as_slice` has been removed: `Vec::as_slice` has been stabilized in 1.7
2024-02-17 06:16:29 -06:00
--> tests/ui/deprecated_old.rs:1:8
|
LL | #[warn(unstable_as_slice)]
| ^^^^^^^^^^^^^^^^^
|
= note: `-D renamed-and-removed-lints` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(renamed_and_removed_lints)]`
error: lint `unstable_as_mut_slice` has been removed: `Vec::as_mut_slice` has been stabilized in 1.7
2024-02-17 06:16:29 -06:00
--> tests/ui/deprecated_old.rs:4: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
2024-02-17 06:16:29 -06:00
--> tests/ui/deprecated_old.rs:6:8
|
LL | #[warn(misaligned_transmute)]
| ^^^^^^^^^^^^^^^^^^^^
2021-05-07 14:53:02 -05:00
error: aborting due to 3 previous errors