From d5b96b7998d78ea2e533e9fa852cf2224d0fdaaf 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 --- crates/test-utils/src/minicore.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/test-utils/src/minicore.rs b/crates/test-utils/src/minicore.rs index f5c8466cb9..99dfabe174 100644 --- a/crates/test-utils/src/minicore.rs +++ b/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,