You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems (partly) like a failing with fixed length vectors, e.g. the following works fine with the first definition of x, but not with the second.
fnmain(){// let x = 1i;let x:[int, .. 2] = [1, .. 2];
x.eq(& x);}
fixed-vec.rs:7:9: 7:12 error: mismatched types: expected `&&[int]` but found `&[int, .. 2]` ([] storage differs: expected & but found 2)
fixed-vec.rs:7 x.eq(& x);
^~~
error: aborting due to previous error
Following code cannot compile.
The text was updated successfully, but these errors were encountered: