about summary refs log tree commit diff
path: root/compiler/rustc_feature/src
diff options
context:
space:
mode:
authorLéo Lanteri Thauvin <leseulartichaut@gmail.com>2021-08-11 16:10:05 +0200
committerLéo Lanteri Thauvin <leseulartichaut@gmail.com>2021-08-16 17:10:31 +0200
commitdabdd6de1fc64ab435476bfc3ef340118097214b (patch)
tree36adb7043f08b509140514653845bfe76cae76cf /compiler/rustc_feature/src
parent73d96b090bb68065cd3a469b27cbd568e39bf0e7 (diff)
downloadrust-dabdd6de1fc64ab435476bfc3ef340118097214b.tar.gz
rust-dabdd6de1fc64ab435476bfc3ef340118097214b.zip
Don't mark `if_let_guard` as an incomplete feature
Diffstat (limited to 'compiler/rustc_feature/src')
-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 73b29d65e91..f1f369a95d9 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -555,7 +555,7 @@ declare_features! (
     (incomplete, lazy_normalization_consts, "1.46.0", Some(72219), None),
 
     /// Allows `if let` guard in match arms.
-    (incomplete, if_let_guard, "1.47.0", Some(51114), None),
+    (active, if_let_guard, "1.47.0", Some(51114), None),
 
     /// Allows non-trivial generic constants which have to be manually propagated upwards.
     (incomplete, const_evaluatable_checked, "1.48.0", Some(76560), None),