about summary refs log tree commit diff
path: root/compiler/rustc_feature
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2023-03-04 02:23:36 +0000
committerMichael Goulet <michael@errs.io>2023-03-28 01:02:15 +0000
commitfb9ca9223d42a13bc15bddd1c2dce506db2fcb21 (patch)
tree7be29004c8a9b2c8c91b9cf84470b011bdf7f0c1 /compiler/rustc_feature
parentf50c1e1f0587d4a7e44946a909484f75a0a4c929 (diff)
downloadrust-fb9ca9223d42a13bc15bddd1c2dce506db2fcb21.tar.gz
rust-fb9ca9223d42a13bc15bddd1c2dce506db2fcb21.zip
Feature gate
Diffstat (limited to 'compiler/rustc_feature')
-rw-r--r--compiler/rustc_feature/src/active.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs
index b7d280b8751..9c0dc938635 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -495,6 +495,8 @@ declare_features! (
     (active, repr_simd, "1.4.0", Some(27731), None),
     /// Allows return-position `impl Trait` in traits.
     (incomplete, return_position_impl_trait_in_trait, "1.65.0", Some(91611), None),
+    /// Allows bounding the return type of AFIT/RPITIT.
+    (incomplete, return_type_notation, "CURRENT_RUSTC_VERSION", Some(109417), None),
     /// Allows `extern "rust-cold"`.
     (active, rust_cold_cc, "1.63.0", Some(97544), None),
     /// Allows the use of SIMD types in functions declared in `extern` blocks.