about summary refs log tree commit diff
path: root/compiler/rustc_attr/src/lib.rs
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-02-02 19:34:07 +0100
committerGitHub <noreply@github.com>2022-02-02 19:34:07 +0100
commit3388e6d9fda3d2bd637b35bbcd71b18d28a026b7 (patch)
treeabb103be7dd3844bc27b6ac1a5c118447341c54d /compiler/rustc_attr/src/lib.rs
parent799bded9b44fd59b4647d4e2087b8d336f573bae (diff)
parent670f5c6ef385f251df5cd7bcba9e8039a80bdb4d (diff)
downloadrust-3388e6d9fda3d2bd637b35bbcd71b18d28a026b7.tar.gz
rust-3388e6d9fda3d2bd637b35bbcd71b18d28a026b7.zip
Rollup merge of #93590 - est31:let_else, r=lcnr
More let_else adoptions

Continuation of #89933, #91018, #91481, #93046.
Diffstat (limited to 'compiler/rustc_attr/src/lib.rs')
-rw-r--r--compiler/rustc_attr/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_attr/src/lib.rs b/compiler/rustc_attr/src/lib.rs
index 3fb11f77872..c95c1c40a34 100644
--- a/compiler/rustc_attr/src/lib.rs
+++ b/compiler/rustc_attr/src/lib.rs
@@ -4,6 +4,8 @@
 //! The goal is to move the definition of `MetaItem` and things that don't need to be in `syntax`
 //! to this crate.
 
+#![feature(let_else)]
+
 #[macro_use]
 extern crate rustc_macros;