From 1de9b49f24f65d29a7ce04dd55e4abe6a48666e9 Mon Sep 17 00:00:00 2001
From: h3nryc0ding
Date: Wed, 15 Oct 2025 18:48:25 +0200
Subject: [PATCH] remove duplicate inline macro
---
library/alloc/src/sync.rs | 1 -
1 file changed, 1 deletion(-)
diff --git a/library/alloc/src/sync.rs b/library/alloc/src/sync.rs
index 5927d03646928..c78f2c8a47e00 100644
--- a/library/alloc/src/sync.rs
+++ b/library/alloc/src/sync.rs
@@ -886,7 +886,6 @@ impl Arc {
/// let five = Arc::try_new_in(5, System)?;
/// # Ok::<(), std::alloc::AllocError>(())
/// ```
- #[inline]
#[unstable(feature = "allocator_api", issue = "32838")]
#[inline]
pub fn try_new_in(data: T, alloc: A) -> Result, AllocError> {