]> git.lizzy.rs Git - rust.git/blob - tests/ui/deprecated.stderr
Auto merge of #80851 - m-ou-se:panic-2021, r=petrochenkov
[rust.git] / tests / ui / deprecated.stderr
1 error: lint `clippy::unstable_as_slice` has been removed: `Vec::as_slice` has been stabilized in 1.7
2   --> $DIR/deprecated.rs:1:8
3    |
4 LL | #[warn(clippy::unstable_as_slice)]
5    |        ^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D renamed-and-removed-lints` implied by `-D warnings`
8
9 error: lint `clippy::unstable_as_mut_slice` has been removed: `Vec::as_mut_slice` has been stabilized in 1.7
10   --> $DIR/deprecated.rs:2:8
11    |
12 LL | #[warn(clippy::unstable_as_mut_slice)]
13    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: lint `clippy::misaligned_transmute` has been removed: this lint has been split into cast_ptr_alignment and transmute_ptr_to_ptr
16   --> $DIR/deprecated.rs:3:8
17    |
18 LL | #[warn(clippy::misaligned_transmute)]
19    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
20
21 error: lint `clippy::unused_collect` has been removed: `collect` has been marked as #[must_use] in rustc and that covers all cases of this lint
22   --> $DIR/deprecated.rs:4:8
23    |
24 LL | #[warn(clippy::unused_collect)]
25    |        ^^^^^^^^^^^^^^^^^^^^^^
26
27 error: lint `clippy::invalid_ref` has been removed: superseded by rustc lint `invalid_value`
28   --> $DIR/deprecated.rs:5:8
29    |
30 LL | #[warn(clippy::invalid_ref)]
31    |        ^^^^^^^^^^^^^^^^^^^
32
33 error: lint `clippy::into_iter_on_array` has been removed: this lint has been uplifted to rustc and is now called `array_into_iter`
34   --> $DIR/deprecated.rs:6:8
35    |
36 LL | #[warn(clippy::into_iter_on_array)]
37    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^
38
39 error: lint `clippy::unused_label` has been removed: this lint has been uplifted to rustc and is now called `unused_labels`
40   --> $DIR/deprecated.rs:7:8
41    |
42 LL | #[warn(clippy::unused_label)]
43    |        ^^^^^^^^^^^^^^^^^^^^
44
45 error: lint `clippy::regex_macro` has been removed: the regex! macro has been removed from the regex crate in 2018
46   --> $DIR/deprecated.rs:8:8
47    |
48 LL | #[warn(clippy::regex_macro)]
49    |        ^^^^^^^^^^^^^^^^^^^
50
51 error: lint `clippy::drop_bounds` has been removed: this lint has been uplifted to rustc and is now called `drop_bounds`
52   --> $DIR/deprecated.rs:9:8
53    |
54 LL | #[warn(clippy::drop_bounds)]
55    |        ^^^^^^^^^^^^^^^^^^^
56
57 error: lint `clippy::temporary_cstring_as_ptr` has been removed: this lint has been uplifted to rustc and is now called `temporary_cstring_as_ptr`
58   --> $DIR/deprecated.rs:10:8
59    |
60 LL | #[warn(clippy::temporary_cstring_as_ptr)]
61    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
62
63 error: lint `clippy::panic_params` has been removed: this lint has been uplifted to rustc and is now called `panic_fmt`
64   --> $DIR/deprecated.rs:11:8
65    |
66 LL | #[warn(clippy::panic_params)]
67    |        ^^^^^^^^^^^^^^^^^^^^
68
69 error: lint `clippy::unknown_clippy_lints` has been removed: this lint has been integrated into the `unknown_lints` rustc lint
70   --> $DIR/deprecated.rs:12:8
71    |
72 LL | #[warn(clippy::unknown_clippy_lints)]
73    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
74
75 error: lint `clippy::find_map` has been removed: this lint has been replaced by `manual_find_map`, a more specific lint
76   --> $DIR/deprecated.rs:13:8
77    |
78 LL | #[warn(clippy::find_map)]
79    |        ^^^^^^^^^^^^^^^^
80
81 error: lint `clippy::unstable_as_slice` has been removed: `Vec::as_slice` has been stabilized in 1.7
82   --> $DIR/deprecated.rs:1:8
83    |
84 LL | #[warn(clippy::unstable_as_slice)]
85    |        ^^^^^^^^^^^^^^^^^^^^^^^^^
86
87 error: aborting due to 14 previous errors
88