diff options
| author | Laurențiu Nicola <lnicola@users.noreply.github.com> | 2024-12-09 09:41:53 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-09 09:41:53 +0000 |
| commit | be43a67703e3b7a0a53549d3945b7b611bf5378f (patch) | |
| tree | 7fed41a7ca7e0919933c9c428ee26cebc4ecc76e | |
| parent | c7b6c95ccf7119dc51c9a2599c1d3307a8b05d9c (diff) | |
| parent | 4148b5345d1c33d801108ea9cc098f7544646ba3 (diff) | |
| download | rust-be43a67703e3b7a0a53549d3945b7b611bf5378f.tar.gz rust-be43a67703e3b7a0a53549d3945b7b611bf5378f.zip | |
Merge pull request #18642 from lnicola/rm-minicore-unstable
minor: Remove unstable attributes in minicore
| -rw-r--r-- | src/tools/rust-analyzer/crates/test-utils/src/minicore.rs | 4 |
1 files changed, 0 insertions, 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 f5c8466cb9f..99dfabe174e 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<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>, |
