]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/deprecated.stderr
Merge commit '2ca58e7dda4a9eb142599638c59dc04d15961175' into clippyup
[rust.git] / src / tools / clippy / tests / ui / deprecated.stderr
1 error: lint `clippy::str_to_string` has been removed: `using `str::to_string` is common even today and specialization will likely happen soon`
2   --> $DIR/deprecated.rs:1:8
3    |
4 LL | #[warn(clippy::str_to_string)]
5    |        ^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D renamed-and-removed-lints` implied by `-D warnings`
8
9 error: lint `clippy::string_to_string` has been removed: `using `string::to_string` is common even today and specialization will likely happen soon`
10   --> $DIR/deprecated.rs:2:8
11    |
12 LL | #[warn(clippy::string_to_string)]
13    |        ^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: lint `clippy::unstable_as_slice` has been removed: ``Vec::as_slice` has been stabilized in 1.7`
16   --> $DIR/deprecated.rs:3:8
17    |
18 LL | #[warn(clippy::unstable_as_slice)]
19    |        ^^^^^^^^^^^^^^^^^^^^^^^^^
20
21 error: lint `clippy::unstable_as_mut_slice` has been removed: ``Vec::as_mut_slice` has been stabilized in 1.7`
22   --> $DIR/deprecated.rs:4:8
23    |
24 LL | #[warn(clippy::unstable_as_mut_slice)]
25    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
26
27 error: lint `clippy::misaligned_transmute` has been removed: `this lint has been split into cast_ptr_alignment and transmute_ptr_to_ptr`
28   --> $DIR/deprecated.rs:5:8
29    |
30 LL | #[warn(clippy::misaligned_transmute)]
31    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
32
33 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`
34   --> $DIR/deprecated.rs:6:8
35    |
36 LL | #[warn(clippy::unused_collect)]
37    |        ^^^^^^^^^^^^^^^^^^^^^^
38
39 error: lint `clippy::invalid_ref` has been removed: `superseded by rustc lint `invalid_value``
40   --> $DIR/deprecated.rs:7:8
41    |
42 LL | #[warn(clippy::invalid_ref)]
43    |        ^^^^^^^^^^^^^^^^^^^
44
45 error: lint `clippy::into_iter_on_array` has been removed: `this lint has been uplifted to rustc and is now called `array_into_iter``
46   --> $DIR/deprecated.rs:8:8
47    |
48 LL | #[warn(clippy::into_iter_on_array)]
49    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^
50
51 error: lint `clippy::unused_label` has been removed: `this lint has been uplifted to rustc and is now called `unused_labels``
52   --> $DIR/deprecated.rs:9:8
53    |
54 LL | #[warn(clippy::unused_label)]
55    |        ^^^^^^^^^^^^^^^^^^^^
56
57 error: lint `clippy::regex_macro` has been removed: `the regex! macro has been removed from the regex crate in 2018`
58   --> $DIR/deprecated.rs:10:8
59    |
60 LL | #[warn(clippy::regex_macro)]
61    |        ^^^^^^^^^^^^^^^^^^^
62
63 error: lint `clippy::str_to_string` has been removed: `using `str::to_string` is common even today and specialization will likely happen soon`
64   --> $DIR/deprecated.rs:1:8
65    |
66 LL | #[warn(clippy::str_to_string)]
67    |        ^^^^^^^^^^^^^^^^^^^^^
68
69 error: aborting due to 11 previous errors
70