@@ -225,7 +225,7 @@ declare_features! (
225225 /// Allows the use of `if let` expressions.
226226 ( accepted, if_let, "1.0.0" , None ) ,
227227 /// 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 ) ) ,
229229 /// Allows top level or-patterns (`p | q`) in `if let` and `while let`.
230230 ( accepted, if_while_or_patterns, "1.33.0" , Some ( 48215 ) ) ,
231231 /// Allows lifetime elision in `impl` headers. For example:
@@ -357,7 +357,7 @@ declare_features! (
357357 ( accepted, repr_transparent, "1.28.0" , Some ( 43036 ) ) ,
358358 /// Allows enums like Result<T, E> to be used across FFI, if T's niche value can
359359 /// 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 ) ) ,
361361 /// Allows return-position `impl Trait` in traits.
362362 ( accepted, return_position_impl_trait_in_trait, "1.75.0" , Some ( 91611 ) ) ,
363363 /// Allows code like `let x: &'static u32 = &42` to work (RFC 1414).
@@ -367,7 +367,7 @@ declare_features! (
367367 /// Allows `Self` struct constructor (RFC 2302).
368368 ( accepted, self_struct_ctor, "1.32.0" , Some ( 51994 ) ) ,
369369 /// 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 ) ) ,
371371 /// Allows using subslice patterns, `[a, .., b]` and `[a, xs @ .., b]`.
372372 ( accepted, slice_patterns, "1.42.0" , Some ( 62254 ) ) ,
373373 /// Allows use of `&foo[a..b]` as a slicing syntax.
0 commit comments