@@ -70,17 +70,16 @@ declare_lint! {
70
70
}
71
71
72
72
declare_lint ! {
73
- /// The `hidden_lifetimes_in_input_paths2 ` lint detects the use of
73
+ /// The `hidden_lifetimes_in_input_paths ` lint detects the use of
74
74
/// hidden lifetime parameters in types occurring as a function
75
75
/// argument.
76
76
///
77
77
/// ### Example
78
78
///
79
79
/// ```rust,compile_fail
80
- /// #![deny(hidden_lifetimes_in_input_paths2)]
81
- ///
82
80
/// struct ContainsLifetime<'a>(&'a i32);
83
81
///
82
+ /// #[deny(hidden_lifetimes_in_input_paths)]
84
83
/// fn foo(x: ContainsLifetime) {}
85
84
/// ```
86
85
///
@@ -99,23 +98,22 @@ declare_lint! {
99
98
/// themselves do not usually cause much confusion.
100
99
///
101
100
/// [placeholder lifetime]: https://doc.rust-lang.org/reference/lifetime-elision.html#lifetime-elision-in-functions
102
- pub HIDDEN_LIFETIMES_IN_INPUT_PATHS2 ,
101
+ pub HIDDEN_LIFETIMES_IN_INPUT_PATHS ,
103
102
Allow ,
104
103
"hidden lifetime parameters in types in function arguments may be confusing"
105
104
}
106
105
107
106
declare_lint ! {
108
- /// The `hidden_lifetimes_in_output_paths2 ` lint detects the use
107
+ /// The `hidden_lifetimes_in_output_paths ` lint detects the use
109
108
/// of hidden lifetime parameters in types occurring as a function
110
109
/// return value.
111
110
///
112
111
/// ### Example
113
112
///
114
113
/// ```rust,compile_fail
115
- /// #![deny(hidden_lifetimes_in_output_paths2)]
116
- ///
117
114
/// struct ContainsLifetime<'a>(&'a i32);
118
115
///
116
+ /// #[deny(hidden_lifetimes_in_output_paths)]
119
117
/// fn foo(x: &i32) -> ContainsLifetime {
120
118
/// ContainsLifetime(x)
121
119
/// }
@@ -137,15 +135,15 @@ declare_lint! {
137
135
/// lifetime].
138
136
///
139
137
/// [placeholder lifetime]: https://doc.rust-lang.org/reference/lifetime-elision.html#lifetime-elision-in-functions
140
- pub HIDDEN_LIFETIMES_IN_OUTPUT_PATHS2 ,
138
+ pub HIDDEN_LIFETIMES_IN_OUTPUT_PATHS ,
141
139
Allow ,
142
140
"hidden lifetime parameters in types in function return values are deprecated"
143
141
}
144
142
145
143
declare_lint_pass ! ( LifetimeStyle => [
146
144
MISMATCHED_LIFETIME_SYNTAXES ,
147
- HIDDEN_LIFETIMES_IN_INPUT_PATHS2 ,
148
- HIDDEN_LIFETIMES_IN_OUTPUT_PATHS2 ,
145
+ HIDDEN_LIFETIMES_IN_INPUT_PATHS ,
146
+ HIDDEN_LIFETIMES_IN_OUTPUT_PATHS ,
149
147
] ) ;
150
148
151
149
impl < ' tcx > LateLintPass < ' tcx > for LifetimeStyle {
@@ -171,8 +169,8 @@ impl<'tcx> LateLintPass<'tcx> for LifetimeStyle {
171
169
}
172
170
173
171
report_mismatches ( cx, & input_map, & output_map) ;
174
- report_hidden_in_paths ( cx, & input_map, HIDDEN_LIFETIMES_IN_INPUT_PATHS2 ) ;
175
- report_hidden_in_paths ( cx, & output_map, HIDDEN_LIFETIMES_IN_OUTPUT_PATHS2 ) ;
172
+ report_hidden_in_paths ( cx, & input_map, HIDDEN_LIFETIMES_IN_INPUT_PATHS ) ;
173
+ report_hidden_in_paths ( cx, & output_map, HIDDEN_LIFETIMES_IN_OUTPUT_PATHS ) ;
176
174
}
177
175
}
178
176
@@ -427,17 +425,16 @@ impl<'a, 'tcx> Visitor<'tcx> for LifetimeInfoCollector<'a, 'tcx> {
427
425
}
428
426
429
427
declare_lint ! {
430
- /// The `hidden_lifetimes_in_type_paths2 ` lint detects the use of
428
+ /// The `hidden_lifetimes_in_type_paths ` lint detects the use of
431
429
/// hidden lifetime parameters in types not part of a function's
432
430
/// arguments or return values.
433
431
///
434
432
/// ### Example
435
433
///
436
434
/// ```rust,compile_fail
437
- /// #![deny(hidden_lifetimes_in_type_paths2)]
438
- ///
439
435
/// struct ContainsLifetime<'a>(&'a i32);
440
436
///
437
+ /// #[deny(hidden_lifetimes_in_type_paths)]
441
438
/// static FOO: ContainsLifetime = ContainsLifetime(&42);
442
439
/// ```
443
440
///
@@ -453,7 +450,7 @@ declare_lint! {
453
450
/// lifetime].
454
451
///
455
452
/// [placeholder lifetime]: https://doc.rust-lang.org/reference/lifetime-elision.html#lifetime-elision-in-functions
456
- pub HIDDEN_LIFETIMES_IN_TYPE_PATHS2 ,
453
+ pub HIDDEN_LIFETIMES_IN_TYPE_PATHS ,
457
454
Allow ,
458
455
"hidden lifetime parameters in types outside function signatures are discouraged"
459
456
}
@@ -463,7 +460,7 @@ pub(crate) struct HiddenLifetimesInTypePaths {
463
460
inside_fn_signature : bool ,
464
461
}
465
462
466
- impl_lint_pass ! ( HiddenLifetimesInTypePaths => [ HIDDEN_LIFETIMES_IN_TYPE_PATHS2 ] ) ;
463
+ impl_lint_pass ! ( HiddenLifetimesInTypePaths => [ HIDDEN_LIFETIMES_IN_TYPE_PATHS ] ) ;
467
464
468
465
impl < ' tcx > LateLintPass < ' tcx > for HiddenLifetimesInTypePaths {
469
466
#[ instrument( skip( self , cx) ) ]
@@ -506,7 +503,7 @@ impl<'tcx> LateLintPass<'tcx> for HiddenLifetimesInTypePaths {
506
503
}
507
504
508
505
cx. emit_span_lint (
509
- HIDDEN_LIFETIMES_IN_TYPE_PATHS2 ,
506
+ HIDDEN_LIFETIMES_IN_TYPE_PATHS ,
510
507
ty. span ,
511
508
lints:: HiddenLifetimeInPath {
512
509
suggestions : lints:: HiddenLifetimeInPathSuggestion { suggestions } ,
0 commit comments