Merge pull request #18642 from lnicola/rm-minicore-unstable

minor: Remove unstable attributes in minicore
This commit is contained in:
Laurențiu Nicola 2024-12-09 09:41:53 +00:00 committed by GitHub
commit be43a67703
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -728,7 +728,6 @@ pub mod ops {
}
}
#[unstable(feature = "async_fn_traits", issue = "none")]
impl<A: Tuple, F: ?Sized> AsyncFnMut<A> for &F
where
F: AsyncFn<A>,
@ -746,7 +745,6 @@ pub mod ops {
}
}
#[unstable(feature = "async_fn_traits", issue = "none")]
impl<'a, A: Tuple, F: ?Sized> AsyncFnOnce<A> for &'a F
where
F: AsyncFn<A>,
@ -759,7 +757,6 @@ pub mod ops {
}
}
#[unstable(feature = "async_fn_traits", issue = "none")]
impl<A: Tuple, F: ?Sized> AsyncFnMut<A> for &mut F
where
F: AsyncFnMut<A>,
@ -777,7 +774,6 @@ pub mod ops {
}
}
#[unstable(feature = "async_fn_traits", issue = "none")]
impl<'a, A: Tuple, F: ?Sized> AsyncFnOnce<A> for &'a mut F
where
F: AsyncFnMut<A>,