about summary refs log tree commit diff
path: root/compiler/rustc_feature/src/unstable.rs
diff options
context:
space:
mode:
authorJules Bertholet <julesbertholet@quoi.xyz>2024-05-15 16:55:54 -0400
committerJules Bertholet <julesbertholet@quoi.xyz>2024-05-15 16:55:54 -0400
commit0746577fa27f2a322f3ab5f4e85c6eeb51c6fc6c (patch)
tree4f1999548a347cc6067d7c95677a09779e882038 /compiler/rustc_feature/src/unstable.rs
parenteb91f3b0513acf34701d8598c1312875c6e489a5 (diff)
downloadrust-0746577fa27f2a322f3ab5f4e85c6eeb51c6fc6c.tar.gz
rust-0746577fa27f2a322f3ab5f4e85c6eeb51c6fc6c.zip
Gate implicit mutable by-reference bindings behind `mut ref`
Diffstat (limited to 'compiler/rustc_feature/src/unstable.rs')
-rw-r--r--compiler/rustc_feature/src/unstable.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs
index 1a058a121f3..a4ccb0f1412 100644
--- a/compiler/rustc_feature/src/unstable.rs
+++ b/compiler/rustc_feature/src/unstable.rs
@@ -527,8 +527,6 @@ declare_features! (
     (unstable, more_qualified_paths, "1.54.0", Some(86935)),
     /// Allows the `#[must_not_suspend]` attribute.
     (unstable, must_not_suspend, "1.57.0", Some(83310)),
-    /// Make `mut` not reset the binding mode on edition >= 2024.
-    (incomplete, mut_preserve_binding_mode_2024, "1.79.0", Some(123076)),
     /// Allows `mut ref` and `mut ref mut` identifier patterns.
     (incomplete, mut_ref, "1.79.0", Some(123076)),
     /// Allows using `#[naked]` on functions.