fix test failure
This commit is contained in:
parent
ba46b61bbc
commit
96794d86f1
1 changed files with 7 additions and 2 deletions
|
@ -2402,8 +2402,13 @@ impl<T, const N: usize> From<[T; N]> for Vec<T>
|
|||
where
|
||||
[T; N]: LengthAtMost32,
|
||||
{
|
||||
fn from(arr: [T; N]) -> Self {
|
||||
<[T]>::into_vec(box arr)
|
||||
#[cfg(not(test))]
|
||||
fn from(s: [T; N]) -> Vec<T> {
|
||||
(box s as Box<[T]>).into_vec()
|
||||
}
|
||||
#[cfg(test)]
|
||||
fn from(s: [T; N]) -> Vec<T> {
|
||||
crate::slice::into_vec(box s)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue