@@ -225,7 +225,7 @@ declare_features! (
225
225
/// Allows the use of `if let` expressions.
226
226
( accepted, if_let, "1.0.0" , None ) ,
227
227
/// Rescoping temporaries in `if let` to align with Rust 2024.
228
- ( accepted, if_let_rescope, "CURRENT_RUSTC_VERSION " , Some ( 124085 ) ) ,
228
+ ( accepted, if_let_rescope, "1.84.0 " , Some ( 124085 ) ) ,
229
229
/// Allows top level or-patterns (`p | q`) in `if let` and `while let`.
230
230
( accepted, if_while_or_patterns, "1.33.0" , Some ( 48215 ) ) ,
231
231
/// Allows lifetime elision in `impl` headers. For example:
@@ -357,7 +357,7 @@ declare_features! (
357
357
( accepted, repr_transparent, "1.28.0" , Some ( 43036 ) ) ,
358
358
/// Allows enums like Result<T, E> to be used across FFI, if T's niche value can
359
359
/// be used to describe E or vice-versa.
360
- ( accepted, result_ffi_guarantees, "CURRENT_RUSTC_VERSION " , Some ( 110503 ) ) ,
360
+ ( accepted, result_ffi_guarantees, "1.84.0 " , Some ( 110503 ) ) ,
361
361
/// Allows return-position `impl Trait` in traits.
362
362
( accepted, return_position_impl_trait_in_trait, "1.75.0" , Some ( 91611 ) ) ,
363
363
/// Allows code like `let x: &'static u32 = &42` to work (RFC 1414).
@@ -367,7 +367,7 @@ declare_features! (
367
367
/// Allows `Self` struct constructor (RFC 2302).
368
368
( accepted, self_struct_ctor, "1.32.0" , Some ( 51994 ) ) ,
369
369
/// Shortern the tail expression lifetime
370
- ( accepted, shorter_tail_lifetimes, "CURRENT_RUSTC_VERSION " , Some ( 123739 ) ) ,
370
+ ( accepted, shorter_tail_lifetimes, "1.84.0 " , Some ( 123739 ) ) ,
371
371
/// Allows using subslice patterns, `[a, .., b]` and `[a, xs @ .., b]`.
372
372
( accepted, slice_patterns, "1.42.0" , Some ( 62254 ) ) ,
373
373
/// Allows use of `&foo[a..b]` as a slicing syntax.
0 commit comments