about summary refs log tree commit diff
path: root/compiler/rustc_feature/src
diff options
context:
space:
mode:
authorDeadbeef <ent3rm4n@gmail.com>2024-06-21 12:22:29 +0000
committerDeadbeef <ent3rm4n@gmail.com>2024-06-22 14:11:11 +0000
commit81da6a6d400ee333b397d47abe33da64d959e0e5 (patch)
tree67b8324fa2c7589bb82120b6e1cbbd1a03777f03 /compiler/rustc_feature/src
parenta6a83d3d4ed4666ccc5cff4043e2ce89279ad6a4 (diff)
downloadrust-81da6a6d400ee333b397d47abe33da64d959e0e5.tar.gz
rust-81da6a6d400ee333b397d47abe33da64d959e0e5.zip
Make `effects` an incomplete feature
Diffstat (limited to 'compiler/rustc_feature/src')
-rw-r--r--compiler/rustc_feature/src/unstable.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs
index 45527bec2f2..fbd67657e3b 100644
--- a/compiler/rustc_feature/src/unstable.rs
+++ b/compiler/rustc_feature/src/unstable.rs
@@ -449,7 +449,7 @@ declare_features! (
     /// Allows `dyn* Trait` objects.
     (incomplete, dyn_star, "1.65.0", Some(102425)),
     /// Uses generic effect parameters for ~const bounds
-    (unstable, effects, "1.72.0", Some(102090)),
+    (incomplete, effects, "1.72.0", Some(102090)),
     /// Allows exhaustive pattern matching on types that contain uninhabited types.
     (unstable, exhaustive_patterns, "1.13.0", Some(51085)),
     /// Allows explicit tail calls via `become` expression.