diff options
| author | Caio <c410.f3r@gmail.com> | 2022-01-18 19:38:17 -0300 |
|---|---|---|
| committer | Caio <c410.f3r@gmail.com> | 2022-01-18 19:38:17 -0300 |
| commit | 5f74ef4fb1d86d80a3052e772010e613353dbfa7 (patch) | |
| tree | 07b04d52535a6472f60b6482028a3bcb725e4494 /compiler/rustc_feature/src | |
| parent | 9ad5d82f822b3cb67637f11be2e65c5662b66ec0 (diff) | |
| download | rust-5f74ef4fb1d86d80a3052e772010e613353dbfa7.tar.gz rust-5f74ef4fb1d86d80a3052e772010e613353dbfa7.zip | |
Formally implement let chains
Diffstat (limited to 'compiler/rustc_feature/src')
| -rw-r--r-- | compiler/rustc_feature/src/active.rs | 2 |
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(..))]`. |
