Fix list length
This commit is contained in:
parent
883b93c7b7
commit
e2bba0708a
28 changed files with 225 additions and 1 deletions
|
|
@ -16,6 +16,10 @@ LL | = [0; (i8::MAX + 1u8) as usize];
|
|||
<&i8 as Add<&i8>>
|
||||
<i8 as Add<&i8>>
|
||||
<i8 as Add>
|
||||
<&'a f32 as Add<f32>>
|
||||
<&'a f64 as Add<f64>>
|
||||
<&'a i128 as Add<i128>>
|
||||
<&'a i16 as Add<i16>>
|
||||
and 48 others
|
||||
|
||||
error: aborting due to 2 previous errors
|
||||
|
|
|
|||
|
|
@ -16,6 +16,10 @@ LL | : [u32; (i8::MAX as i8 + 1u8) as usize]
|
|||
<&i8 as Add<&i8>>
|
||||
<i8 as Add<&i8>>
|
||||
<i8 as Add>
|
||||
<&'a f32 as Add<f32>>
|
||||
<&'a f64 as Add<f64>>
|
||||
<&'a i128 as Add<i128>>
|
||||
<&'a i16 as Add<i16>>
|
||||
and 48 others
|
||||
|
||||
error[E0604]: only `u8` can be cast as `char`, not `i8`
|
||||
|
|
|
|||
|
|
@ -26,6 +26,10 @@ LL | [5; Self::HOST_SIZE] == [6; 0]
|
|||
<&[T] as PartialEq<Vec<U, A>>>
|
||||
<&mut [B] as PartialEq<[A; N]>>
|
||||
<&mut [T] as PartialEq<Vec<U, A>>>
|
||||
<[A; N] as PartialEq<&[B]>>
|
||||
<[A; N] as PartialEq<&mut [B]>>
|
||||
<[A; N] as PartialEq<[B; N]>>
|
||||
<[A; N] as PartialEq<[B]>>
|
||||
and 3 others
|
||||
|
||||
error: aborting due to 3 previous errors
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue