Fix list length

This commit is contained in:
Esteban Kuber 2022-03-26 23:14:47 +00:00
parent 883b93c7b7
commit e2bba0708a
28 changed files with 225 additions and 1 deletions

View file

@ -10,6 +10,10 @@ LL | x * y
<&i32 as Mul<&i32>>
<i32 as Mul<&i32>>
<i32 as Mul>
<&'a f32 as Mul<f32>>
<&'a f64 as Mul<f64>>
<&'a i128 as Mul<i128>>
<&'a i16 as Mul<i16>>
and 49 others
error: aborting due to previous error

View file

@ -21,6 +21,10 @@ LL | assert_eq!(foo, y);
<extern "C" fn(A) -> Ret as Debug>
<extern "C" fn(A, ...) -> Ret as Debug>
<extern "C" fn(A, B) -> Ret as Debug>
<extern "C" fn(A, B, ...) -> Ret as Debug>
<extern "C" fn(A, B, C) -> Ret as Debug>
<extern "C" fn(A, B, C, ...) -> Ret as Debug>
<extern "C" fn(A, B, C, D) -> Ret as Debug>
and 68 others
= note: this error originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)

View file

@ -10,6 +10,10 @@ LL | 22 >> p.char;
<&'a i128 as Shr<i16>>
<&'a i128 as Shr<i32>>
<&'a i128 as Shr<i64>>
<&'a i128 as Shr<i8>>
<&'a i128 as Shr<isize>>
<&'a i128 as Shr<u128>>
<&'a i128 as Shr<u16>>
and 568 others
error[E0277]: no implementation for `{integer} >> &str`
@ -24,6 +28,10 @@ LL | 22 >> p.str;
<&'a i128 as Shr<i16>>
<&'a i128 as Shr<i32>>
<&'a i128 as Shr<i64>>
<&'a i128 as Shr<i8>>
<&'a i128 as Shr<isize>>
<&'a i128 as Shr<u128>>
<&'a i128 as Shr<u16>>
and 568 others
error[E0277]: no implementation for `{integer} >> &Panolpy`
@ -38,6 +46,10 @@ LL | 22 >> p;
<&'a i128 as Shr<i16>>
<&'a i128 as Shr<i32>>
<&'a i128 as Shr<i64>>
<&'a i128 as Shr<i8>>
<&'a i128 as Shr<isize>>
<&'a i128 as Shr<u128>>
<&'a i128 as Shr<u16>>
and 568 others
error[E0308]: mismatched types