@@ -21,8 +21,7 @@ declare_lint! {
21
21
/// Your discretion on the new drop order introduced by Edition 2024 is required.
22
22
///
23
23
/// ### Example
24
- /// ```rust,edition2024
25
- /// #![feature(shorter_tail_lifetimes)]
24
+ /// ```rust,edition2021
26
25
/// #![warn(tail_expr_drop_order)]
27
26
/// struct Droppy(i32);
28
27
/// impl Droppy {
@@ -37,12 +36,12 @@ declare_lint! {
37
36
/// println!("loud drop {}", self.0);
38
37
/// }
39
38
/// }
40
- /// fn edition_2024 () -> i32 {
39
+ /// fn edition_2021 () -> i32 {
41
40
/// let another_droppy = Droppy(0);
42
41
/// Droppy(1).get()
43
42
/// }
44
43
/// fn main() {
45
- /// edition_2024 ();
44
+ /// edition_2021 ();
46
45
/// }
47
46
/// ```
48
47
///
@@ -137,7 +136,7 @@ impl<'tcx> LateLintPass<'tcx> for TailExprDropOrder {
137
136
_: Span ,
138
137
def_id : rustc_span:: def_id:: LocalDefId ,
139
138
) {
140
- if cx . tcx . sess . at_least_rust_2024 ( ) && cx . tcx . features ( ) . shorter_tail_lifetimes {
139
+ if !body . value . span . edition ( ) . at_least_rust_2024 ( ) {
141
140
Self :: check_fn_or_closure ( cx, fn_kind, body, def_id) ;
142
141
}
143
142
}
@@ -185,7 +184,7 @@ impl<'a, 'tcx> Visitor<'tcx> for LintVisitor<'a, 'tcx> {
185
184
186
185
impl < ' a , ' tcx > LintVisitor < ' a , ' tcx > {
187
186
fn check_block_inner ( & mut self , block : & Block < ' tcx > ) {
188
- if ! block. span . at_least_rust_2024 ( ) {
187
+ if block. span . at_least_rust_2024 ( ) {
189
188
// We only lint for Edition 2024 onwards
190
189
return ;
191
190
}
0 commit comments