about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorOliver Scherer <github35764891676564198441@oli-obk.de>2018-11-24 14:38:31 +0100
committerOliver Scherer <github35764891676564198441@oli-obk.de>2018-11-30 09:44:06 +0100
commitd62bcad38da1b65ecd8a3544c3ff94855b88366a (patch)
tree9cbbeedc77d04d85a750152d45e67842b3a1c56b /src/libsyntax
parent7ec3c10d7e1bfac9e93b0138d2a9703d1f722dff (diff)
downloadrust-d62bcad38da1b65ecd8a3544c3ff94855b88366a.tar.gz
rust-d62bcad38da1b65ecd8a3544c3ff94855b88366a.zip
Allow `let` bindings everywhere
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 3bc34917051..586659ecd9c 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -209,9 +209,6 @@ declare_features! (
     // Allows the definition of `const fn` functions with some advanced features.
     (active, const_fn, "1.2.0", Some(24111), None),
 
-    // Allows let bindings and destructuring in `const fn` functions and constants.
-    (active, const_let, "1.22.1", Some(48821), None),
-
     // Allows accessing fields of unions inside const fn.
     (active, const_fn_union, "1.27.0", Some(51909), None),