]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_feature/src/accepted.rs
Rollup merge of #99386 - AngelicosPhosphoros:add_retain_test_maybeuninit, r=JohnTitor
[rust.git] / compiler / rustc_feature / src / accepted.rs
index 099c40b215d9992b576c57a8855df60566abb1b8..2d24101b2d59a2978153ae03a2559a942ffe29dc 100644 (file)
@@ -186,6 +186,8 @@ macro_rules! declare_features {
     /// Allows some increased flexibility in the name resolution rules,
     /// especially around globs and shadowing (RFC 1560).
     (accepted, item_like_imports, "1.15.0", Some(35120), None),
+    /// Allows `if/while p && let q = r && ...` chains.
+    (accepted, let_chains, "1.64.0", Some(53667), None),
     /// Allows `break {expr}` with a value inside `loop`s.
     (accepted, loop_break_value, "1.19.0", Some(37339), None),
     /// Allows use of `?` as the Kleene "at most one" operator in macros.