about summary refs log tree commit diff
path: root/compiler/rustc_borrowck/src/lib.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-01-24 22:27:25 +0000
committerMichael Goulet <michael@errs.io>2024-02-06 02:22:58 +0000
commita82bae2172499864c12a1d0b412931ad884911f7 (patch)
treec7299fdfd83be3818fcffdb86639146c9d29bb69 /compiler/rustc_borrowck/src/lib.rs
parentc567eddec2c628d4f13707866731e1b2013ad236 (diff)
downloadrust-a82bae2172499864c12a1d0b412931ad884911f7.tar.gz
rust-a82bae2172499864c12a1d0b412931ad884911f7.zip
Teach typeck/borrowck/solvers how to deal with async closures
Diffstat (limited to 'compiler/rustc_borrowck/src/lib.rs')
-rw-r--r--compiler/rustc_borrowck/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_borrowck/src/lib.rs b/compiler/rustc_borrowck/src/lib.rs
index eaf9fc45837..bb64571889b 100644
--- a/compiler/rustc_borrowck/src/lib.rs
+++ b/compiler/rustc_borrowck/src/lib.rs
@@ -3,6 +3,7 @@
 #![allow(internal_features)]
 #![feature(rustdoc_internals)]
 #![doc(rust_logo)]
+#![feature(assert_matches)]
 #![feature(associated_type_bounds)]
 #![feature(box_patterns)]
 #![feature(let_chains)]