about summary refs log tree commit diff
path: root/compiler/rustc_feature
diff options
context:
space:
mode:
authorCaio <c410.f3r@gmail.com>2022-01-18 19:38:17 -0300
committerCaio <c410.f3r@gmail.com>2022-01-18 19:38:17 -0300
commit5f74ef4fb1d86d80a3052e772010e613353dbfa7 (patch)
tree07b04d52535a6472f60b6482028a3bcb725e4494 /compiler/rustc_feature
parent9ad5d82f822b3cb67637f11be2e65c5662b66ec0 (diff)
downloadrust-5f74ef4fb1d86d80a3052e772010e613353dbfa7.tar.gz
rust-5f74ef4fb1d86d80a3052e772010e613353dbfa7.zip
Formally implement let chains
Diffstat (limited to 'compiler/rustc_feature')
-rw-r--r--compiler/rustc_feature/src/active.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs
index 47010ea3ab6..0b65a5ff3ec 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -415,7 +415,7 @@ declare_features! (
     // Allows setting the threshold for the `large_assignments` lint.
     (active, large_assignments, "1.52.0", Some(83518), None),
     /// Allows `if/while p && let q = r && ...` chains.
-    (incomplete, let_chains, "1.37.0", Some(53667), None),
+    (active, let_chains, "1.37.0", Some(53667), None),
     /// Allows `let...else` statements.
     (active, let_else, "1.56.0", Some(87335), None),
     /// Allows `#[link(..., cfg(..))]`.