From 4148b5345d1c33d801108ea9cc098f7544646ba3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Mon, 9 Dec 2024 11:17:17 +0200 Subject: [PATCH] Remove unstable attributes in minicore --- src/tools/rust-analyzer/crates/test-utils/src/minicore.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/tools/rust-analyzer/crates/test-utils/src/minicore.rs b/src/tools/rust-analyzer/crates/test-utils/src/minicore.rs index f5c8466cb9f0..99dfabe174ee 100644 --- a/src/tools/rust-analyzer/crates/test-utils/src/minicore.rs +++ b/src/tools/rust-analyzer/crates/test-utils/src/minicore.rs @@ -728,7 +728,6 @@ pub mod ops { } } - #[unstable(feature = "async_fn_traits", issue = "none")] impl AsyncFnMut for &F where F: AsyncFn, @@ -746,7 +745,6 @@ pub mod ops { } } - #[unstable(feature = "async_fn_traits", issue = "none")] impl<'a, A: Tuple, F: ?Sized> AsyncFnOnce for &'a F where F: AsyncFn, @@ -759,7 +757,6 @@ pub mod ops { } } - #[unstable(feature = "async_fn_traits", issue = "none")] impl AsyncFnMut for &mut F where F: AsyncFnMut, @@ -777,7 +774,6 @@ pub mod ops { } } - #[unstable(feature = "async_fn_traits", issue = "none")] impl<'a, A: Tuple, F: ?Sized> AsyncFnOnce for &'a mut F where F: AsyncFnMut,