]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/deprecated.stderr
Rollup merge of #84221 - ABouttefeux:generic-arg-elision, r=estebank
[rust.git] / src / tools / clippy / 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 renamed to `invalid_value`
28   --> $DIR/deprecated.rs:5:8
29    |
30 LL | #[warn(clippy::invalid_ref)]
31    |        ^^^^^^^^^^^^^^^^^^^ help: use the new name: `invalid_value`
32
33 error: lint `clippy::into_iter_on_array` has been renamed to `array_into_iter`
34   --> $DIR/deprecated.rs:6:8
35    |
36 LL | #[warn(clippy::into_iter_on_array)]
37    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `array_into_iter`
38
39 error: lint `clippy::unused_label` has been renamed to `unused_labels`
40   --> $DIR/deprecated.rs:7:8
41    |
42 LL | #[warn(clippy::unused_label)]
43    |        ^^^^^^^^^^^^^^^^^^^^ help: use the new name: `unused_labels`
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 renamed to `drop_bounds`
52   --> $DIR/deprecated.rs:9:8
53    |
54 LL | #[warn(clippy::drop_bounds)]
55    |        ^^^^^^^^^^^^^^^^^^^ help: use the new name: `drop_bounds`
56
57 error: lint `clippy::temporary_cstring_as_ptr` has been renamed to `temporary_cstring_as_ptr`
58   --> $DIR/deprecated.rs:10:8
59    |
60 LL | #[warn(clippy::temporary_cstring_as_ptr)]
61    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `temporary_cstring_as_ptr`
62
63 error: lint `clippy::panic_params` has been renamed to `non_fmt_panic`
64   --> $DIR/deprecated.rs:11:8
65    |
66 LL | #[warn(clippy::panic_params)]
67    |        ^^^^^^^^^^^^^^^^^^^^ help: use the new name: `non_fmt_panic`
68
69 error: lint `clippy::unknown_clippy_lints` has been renamed to `unknown_lints`
70   --> $DIR/deprecated.rs:12:8
71    |
72 LL | #[warn(clippy::unknown_clippy_lints)]
73    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `unknown_lints`
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::filter_map` has been removed: this lint has been replaced by `manual_filter_map`, a more specific lint
82   --> $DIR/deprecated.rs:14:8
83    |
84 LL | #[warn(clippy::filter_map)]
85    |        ^^^^^^^^^^^^^^^^^^
86
87 error: aborting due to 14 previous errors
88