diff --git a/crates/oxc_allocator/src/clone_in.rs b/crates/oxc_allocator/src/clone_in.rs index f5a0c6e9333e6..f8bdb157d92bd 100644 --- a/crates/oxc_allocator/src/clone_in.rs +++ b/crates/oxc_allocator/src/clone_in.rs @@ -22,7 +22,7 @@ use crate::{Allocator, Box, Vec}; /// Implementations of this trait on non-allocated items usually short-circuit to `Clone::clone`; /// However, it **isn't** guaranteed. /// -pub trait CloneIn<'new_alloc>: Sized { +pub trait CloneIn<'new_alloc> { /// The type of the cloned object. /// /// This should always be `Self` with a different lifetime.