You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//~^ ERROR: lint `clippy::if_let_redundant_pattern_matching` has been removed: this lint has been changed to redundant_pattern_matching
22
13
#![warn(clippy::unsafe_vector_initialization)]
23
-
//~^ ERROR: lint `clippy::unsafe_vector_initialization` has been removed: the replacement suggested by this lint had substantially different behavior
24
14
#![warn(clippy::unused_collect)]
25
-
//~^ 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
26
15
#![warn(clippy::replace_consts)]
27
-
//~^ ERROR: lint `clippy::replace_consts` has been removed: associated-constants `MIN`/`MAX` of integers are preferred to `{min,max}_value()` and module constants
28
16
#![warn(clippy::regex_macro)]
29
-
//~^ ERROR: lint `clippy::regex_macro` has been removed: the regex! macro has been removed from the regex crate in 2018
30
17
#![warn(clippy::find_map)]
31
-
//~^ ERROR: lint `clippy::find_map` has been removed: this lint has been replaced by `manual_find_map`, a more specific lint
32
18
#![warn(clippy::filter_map)]
33
-
//~^ ERROR: lint `clippy::filter_map` has been removed: this lint has been replaced by `manual_filter_map`, a more specific lint
34
19
#![warn(clippy::pub_enum_variant_names)]
35
-
//~^ ERROR: lint `clippy::pub_enum_variant_names` has been removed: set the `avoid-breaking-exported-api` config option to `false` to enable the `enum_variant_names` lint for public items
36
20
#![warn(clippy::wrong_pub_self_convention)]
37
-
//~^ ERROR: lint `clippy::wrong_pub_self_convention` has been removed: set the `avoid-breaking-exported-api` config option to `false` to enable the `wrong_self_convention` lint for public items
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
58
-
--> $DIR/deprecated.rs:24:9
58
+
--> $DIR/deprecated.rs:14:9
59
59
|
60
60
LL | #![warn(clippy::unused_collect)]
61
61
| ^^^^^^^^^^^^^^^^^^^^^^
62
62
63
63
error: lint `clippy::replace_consts` has been removed: associated-constants `MIN`/`MAX` of integers are preferred to `{min,max}_value()` and module constants
64
-
--> $DIR/deprecated.rs:26:9
64
+
--> $DIR/deprecated.rs:15:9
65
65
|
66
66
LL | #![warn(clippy::replace_consts)]
67
67
| ^^^^^^^^^^^^^^^^^^^^^^
68
68
69
69
error: lint `clippy::regex_macro` has been removed: the regex! macro has been removed from the regex crate in 2018
70
-
--> $DIR/deprecated.rs:28:9
70
+
--> $DIR/deprecated.rs:16:9
71
71
|
72
72
LL | #![warn(clippy::regex_macro)]
73
73
| ^^^^^^^^^^^^^^^^^^^
74
74
75
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:30:9
76
+
--> $DIR/deprecated.rs:17:9
77
77
|
78
78
LL | #![warn(clippy::find_map)]
79
79
| ^^^^^^^^^^^^^^^^
80
80
81
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:32:9
82
+
--> $DIR/deprecated.rs:18:9
83
83
|
84
84
LL | #![warn(clippy::filter_map)]
85
85
| ^^^^^^^^^^^^^^^^^^
86
86
87
87
error: lint `clippy::pub_enum_variant_names` has been removed: set the `avoid-breaking-exported-api` config option to `false` to enable the `enum_variant_names` lint for public items
88
-
--> $DIR/deprecated.rs:34:9
88
+
--> $DIR/deprecated.rs:19:9
89
89
|
90
90
LL | #![warn(clippy::pub_enum_variant_names)]
91
91
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
92
92
93
93
error: lint `clippy::wrong_pub_self_convention` has been removed: set the `avoid-breaking-exported-api` config option to `false` to enable the `wrong_self_convention` lint for public items
0 commit comments