Add the feature gate for the super let experiment.

This commit is contained in:
Mara Bos 2025-03-28 18:32:12 +01:00
parent 2a06022951
commit 40b1f4899a
7 changed files with 39 additions and 1 deletions

View file

@ -630,6 +630,8 @@ declare_features! (
(unstable, strict_provenance_lints, "1.61.0", Some(130351)),
/// Allows string patterns to dereference values to match them.
(unstable, string_deref_patterns, "1.67.0", Some(87121)),
/// Allows `super let` statements.
(unstable, super_let, "CURRENT_RUSTC_VERSION", Some(139076)),
/// Allows subtrait items to shadow supertrait items.
(unstable, supertrait_item_shadowing, "1.86.0", Some(89151)),
/// Allows using `#[thread_local]` on `static` items.