about summary refs log tree commit diff
path: root/compiler/rustc_feature/src/unstable.rs
diff options
context:
space:
mode:
authorFrank King <frankking1729@gmail.com>2024-12-25 14:54:49 +0800
committerFrank King <frankking1729@gmail.com>2025-01-16 16:34:05 +0800
commit5079acc060b1c7225de95ee3cdd84b5719ff189c (patch)
treeb6a96cf0efc47a35ac0f9244339dc4e120f6ce46 /compiler/rustc_feature/src/unstable.rs
parent4e5fec2f1ea4b1cfecaa14304c9f56de59b344cb (diff)
downloadrust-5079acc060b1c7225de95ee3cdd84b5719ff189c.tar.gz
rust-5079acc060b1c7225de95ee3cdd84b5719ff189c.zip
Implement `use` associated items of traits
Diffstat (limited to 'compiler/rustc_feature/src/unstable.rs')
-rw-r--r--compiler/rustc_feature/src/unstable.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs
index d40823d2ed6..8b5cecc3e4f 100644
--- a/compiler/rustc_feature/src/unstable.rs
+++ b/compiler/rustc_feature/src/unstable.rs
@@ -519,6 +519,8 @@ declare_features! (
     (unstable, impl_trait_in_bindings, "1.64.0", Some(63065)),
     /// Allows `impl Trait` as output type in `Fn` traits in return position of functions.
     (unstable, impl_trait_in_fn_trait_return, "1.64.0", Some(99697)),
+    /// Allows `use` associated functions from traits.
+    (unstable, import_trait_associated_functions, "CURRENT_RUSTC_VERSION", Some(134691)),
     /// Allows associated types in inherent impls.
     (incomplete, inherent_associated_types, "1.52.0", Some(8995)),
     /// Allow anonymous constants from an inline `const` block in pattern position